Registrants
List Session Registrants
Returns the list of Registrants ordered by "id" ascending.
A caller must be an authorized user: either a host of the webinar or an IT Admin: a user from host's account with "WebinarSettings" permission.
get/webinar/registration/v1/sessions/{sessionId}/registrants
Path parameters
sessionIdstring required
Identifier of the Session.
Query parameters
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.
includeQuestionnaireboolean
Indicates if registrant's "questionnaire" should be returned
Response
Successful response
Example response
{
"records": [
{
"id": "78654321",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"joinUri": "https://v.ringcentral.com/w/a/join/iuyef77fsj473wn10ashjfk34",
"cancellationUri": "https://abcde12345.webinar.ringcentral.com/register?jlt=iuyef77fsj473wn10ashjfk34&action=cancel",
"questionnaire": [
{
"questionId": "123456789"
}
]
}
],
"paging": {
"perPage": 100
}
}