List meeting participants
GET/meeting.participants
Paginate through all participants of a meeting. This is the dedicated endpoint for retrieving the full participant list, complementing the capped inline participants in /meeting.info.
Pagination uses an opaque cursor (not a row offset). Pass nextCursor
from a previous response as cursor to fetch the next page. Invalid cursors
return error: "invalid_cursor" โ see Responses and Errors.
Access: Organization and Personal. Personal access tokens restrict to meetings the authenticated user participated in.
Required scope: meetings:read and user:read (add user:read.email for participant emails)
OpenAPI Spec: chat-v1.json
Requestโ
Responsesโ
- 200
- 400
- 401
- 404
- 405
- 500
Participants retrieved successfully
Bad request. Missing or invalid id, or invalid cursor (invalid_cursor).
Presented invalid authentication credentials.
Meeting not found.
An unsupported method was requested.
An internal error occurred.