v1

latestOpenAPI 3.1.12026-07-2692827.1 KB
Meetings

List meeting types

List your org's meeting types, including both active and inactive. Use the returned name values as the meeting_type filter on GET /meetings.

get/meeting_types

Query parameters

cursorstring

Cursor for pagination.

Response

Paginated list of meeting types.

limitinteger nullable required
next_cursorstring nullable required

Example response

{
  "limit": 1,
  "next_cursor": "eyJwYWdlX251bSI6Mn0=",
  "items": [
    {
      "name": "Quarterly Business Review",
      "status": "active",
      "created_at": "2023-11-10T12:00:00Z"
    }
  ]
}
All 9 operations