List synced meetings
GET
/meetings
const url = 'https://my-instance.example.com/meetings';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://my-instance.example.com/meetings \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” since
string format: date-time
ISO8601 lower bound on updatedAt.
limit
integer
Responses
Section titled “ Responses ”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"}