Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Account to apply operations to
curl --request GET \
--url https://api.sakari.io/v1/account/{accountId}/meetingevents \
--header 'Authorization: Bearer <token>'
{
"success": true,
"pagination": {
"limit": 123,
"offset": 123,
"hasNext": true
},
"data": [
{
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"durations": [
123
],
"calendar": {
"connection": {
"id": "<string>",
"connectedAt": "2023-11-07T05:31:56Z",
"user": {
"id": "<string>",
"email": "<string>"
}
}
},
"allowAdditionalAttendees": true,
"availability": {
"timezone": "<string>",
"times": {
"sun": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"mon": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"tue": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"wed": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"thu": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"fri": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"sat": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
]
}
},
"bufferTime": 123,
"minimumNotice": 123,
"enabled": true,
"notifications": {
"host": {
"sms": 123
},
"attendee": {
"sms": 123
}
},
"styling": {
"logo": true,
"cover": true
},
"hosts": [
{
"id": "<string>",
"email": "chris@sakari.io",
"firstName": "Chris",
"lastName": "Bloggs",
"mobile": {
"country": "<string>",
"number": "123-456-7890",
"verified": "2023-11-07T05:31:56Z",
"valid": true,
"lineType": "mobile"
}
}
],
"id": "<string>"
}
]
}
curl --request GET \
--url https://api.sakari.io/v1/account/{accountId}/meetingevents \
--header 'Authorization: Bearer <token>'
{
"success": true,
"pagination": {
"limit": 123,
"offset": 123,
"hasNext": true
},
"data": [
{
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"durations": [
123
],
"calendar": {
"connection": {
"id": "<string>",
"connectedAt": "2023-11-07T05:31:56Z",
"user": {
"id": "<string>",
"email": "<string>"
}
}
},
"allowAdditionalAttendees": true,
"availability": {
"timezone": "<string>",
"times": {
"sun": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"mon": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"tue": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"wed": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"thu": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"fri": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
],
"sat": [
{
"start": {
"hour": "<any>",
"minute": "<any>"
},
"end": {
"hour": "<any>",
"minute": "<any>"
}
}
]
}
},
"bufferTime": 123,
"minimumNotice": 123,
"enabled": true,
"notifications": {
"host": {
"sms": 123
},
"attendee": {
"sms": 123
}
},
"styling": {
"logo": true,
"cover": true
},
"hosts": [
{
"id": "<string>",
"email": "chris@sakari.io",
"firstName": "Chris",
"lastName": "Bloggs",
"mobile": {
"country": "<string>",
"number": "123-456-7890",
"verified": "2023-11-07T05:31:56Z",
"valid": true,
"lineType": "mobile"
}
}
],
"id": "<string>"
}
]
}
The access token received from the authorization server in the OAuth 2.0 flow.
Account to apply operations to