Meetings

The Meetings API provides a powerful mechanism to capture notes, provide talking points or track action items from both 1:1 and group meetings. It does not provide functionality to record or host meetings.

Create meeting

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
namestringRequired
typestringRequired
recurringbooleanOptional
Responses
post
/api/v1/meeting

Get meeting

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired
Responses
chevron-right
200

OK

application/json
get
/api/v1/meeting/{id}

Update meeting

patch
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired
Body
namestringRequired
typestringRequired
recurringbooleanOptional
Responses
chevron-right
200

OK

application/json
patch
/api/v1/meeting/{id}

Add participant to meeting

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
meetingIdstringRequired
Body
entityIdOrEmailstringRequired
Responses
chevron-right
200

OK

application/json
post
/api/v1/meeting/{meetingId}/participant

Remove participant from meeting

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
meetingIdstringRequired
entityIdOrEmailstringRequired
Responses
chevron-right
200

OK

application/json
delete
/api/v1/meeting/{meetingId}/participant/{entityIdOrEmail}

Create meeting event

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
meetingIdstringRequired
Body
namestringRequired
startTimestring · date-timeRequired
endTimestring · date-timeOptional
Responses
post
/api/v1/meeting/{meetingId}/event

Delete meeting event

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
meetingIdstringRequired
eventIdstringRequired
Responses
chevron-right
200

OK

application/json
delete
/api/v1/meeting/{meetingId}/event/{eventId}

Update meeting event

patch
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
meetingIdstringRequired
eventIdstringRequired
Body
namestringRequired
startTimestring · date-timeRequired
endTimestring · date-timeOptional
Responses
chevron-right
200

OK

application/json
patch
/api/v1/meeting/{meetingId}/event/{eventId}

Last updated

Was this helpful?