Skip to content

List synced meetings

GET
/meetings
curl --request GET \
--url https://my-instance.example.com/meetings \
--header 'Authorization: Bearer <token>'
since
string format: date-time

ISO8601 lower bound on updatedAt.

limit
integer

The list of synced meetings.

Media type application/json
object
ok
boolean
meetings
Array<object>
object
id
string
title
string
updatedAt
string format: date-time
Example generated
{
"ok": true,
"meetings": [
{
"id": "example",
"title": "example",
"updatedAt": "2026-04-15T12:00:00Z"
}
]
}

An invalid argument (for example a malformed since).

Media type application/json
object
error
required
string
code
string
Example generated
{
"error": "example",
"code": "example"
}

The bearer token is missing or wrong.

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