Registrants
Create Registrant
Creates a new Registrant for a given session.
Registration MUST be open for the session for this call to succeed (otherwise it should return HTTP 403).
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.
post/webinar/registration/v1/sessions/{sessionId}/registrants
Path parameters
sessionIdstring required
Identifier of the Session.
Request body
Example request
{
"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"
}
]
}Response
Successful response, new Registrant is created
Example response
{
"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"
}
]
}