v1

latestOpenAPI 3.0.3RingCentral API License Agreement2026-08-064871,2921.5 MB
Historical Webinars

List Session Invitees

Returns the list of Invitees (co-hosts and panelists) of a given Webinar Session (host interface). An implicit record created for a Webinar 'Host' is always returned.

get/webinar/history/v1/webinars/{webinarId}/sessions/{sessionId}/invitees

Path parameters

webinarIdstring required

Identifier of the Webinar.

sessionIdstring required

Identifier of the Session.

Query parameters

roleRcwRoleEnum[]

The role of the invitee/participant.

[
  "Panelist"
]
originalRoleRcwRoleEnum[]

The original role of the invitee/participant.

[
  "Panelist"
]
perPageinteger

The number of items per page. If provided value in the request is greater than a maximum, the maximum value is applied

pageTokenstring

The token indicating the particular page of the result set to be retrieved. If omitted the first page will be returned.

Response

Successful response

Example response

{
  "records": [
    {
      "id": "78654321",
      "firstName": "John",
      "lastName": "Doe",
      "role": "Panelist",
      "originalRole": "Panelist",
      "avatarToken": "wedyugwied8wud98u90i329silqdjalidj",
      "email": "john.doe@example.com",
      "qnaBlocked": true,
      "sendInvite": true,
      "joined": true
    }
  ],
  "paging": {
    "perPage": 100
  }
}