Skip to content

Fetch one meeting

GET
/meetings/get
curl --request GET \
--url 'https://my-instance.example.com/meetings/get?id=example' \
--header 'Authorization: Bearer <token>'
id
required
string
transcript
boolean

Pass true to include the transcript.

The meeting.

Media type application/json
object
ok
boolean
meeting
object
key
additional properties
any
Example generated
{
"ok": true,
"meeting": {}
}

id is missing.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "id is required"
}

The bearer token is missing or wrong.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "Unauthorized"
}

The meeting was not found.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "meeting not found"
}