Skip to main content
GET
/
v1
/
accounts
/
{accountId}
/
meetings
Get all Meetings
curl --request GET \
  --url https://api.sakari.io/v1/accounts/{accountId}/meetings \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "pagination": {
    "limit": 123,
    "offset": 123,
    "hasNext": true
  },
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "start": "2023-11-07T05:31:56Z",
      "end": "2023-11-07T05:31:56Z",
      "calendar": {
        "connection": {
          "id": "<string>",
          "connectedAt": "2023-11-07T05:31:56Z",
          "user": {
            "id": "<string>",
            "email": "<string>"
          }
        }
      },
      "hosts": [
        {
          "id": "<string>",
          "email": "[email protected]",
          "firstName": "Chris",
          "lastName": "Bloggs",
          "mobile": {
            "country": "<string>",
            "number": "123-456-7890",
            "verified": "2023-11-07T05:31:56Z",
            "valid": true,
            "lineType": "mobile"
          }
        }
      ],
      "attendees": [
        {
          "id": "<string>",
          "email": "[email protected]",
          "firstName": "Chris",
          "lastName": "Bloggs",
          "mobile": {
            "country": "<string>",
            "number": "123-456-7890",
            "verified": "2023-11-07T05:31:56Z",
            "valid": true,
            "lineType": "mobile"
          }
        }
      ],
      "cancelled": true,
      "notes": "<string>",
      "conferencing": {
        "provider": "<string>",
        "joinUrl": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

accountId
string
required

Account to apply operations to

Query Parameters

attendee
string

Id of attendee in meeting

host
string

Id of host in meeting

name
string

Name of meeting event associated with meeting

date
string

Date-string of day the meeting occurs

duration
integer

Duration of meeting in minutes

status
string

Status of meeting

limit
integer<int64>

Maximum number of results to return

Required range: 1 <= x <= 100
offset
integer<int64>

Results to skip when paginating through a result set

Required range: x >= 0

Response

successful operation

success
boolean
required
pagination
object
required
data
object[]
required