Historical Webinars
List Session Participants
Returns the list of participants of a given Webinar Session (host interface).
get/webinar/history/v1/webinars/{webinarId}/sessions/{sessionId}/participants
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,
"registrantId": "12345678",
"uniqueUserHash": "qzR4wNbddziRil7i033ELlb3KXrJDsw8mOyj970J+so="
}
],
"paging": {
"perPage": 100
}
}