Registration Management
Update Registration Session
Updates a Session by ID.
This is a PARTIAL update (PATCH), client may call it providing only attributes which are to be changed.
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.
If a session record with given ID doesn't exist on Registration Service side the API should return HTTP 404.
patch/webinar/registration/v1/sessions/{sessionId}
Path parameters
sessionIdstring required
Identifier of the Session.
Request body
Example request
{
"id": "123456789",
"registrationStatus": "Open",
"registrationPageUri": "https://abcde12345.webinar.ringcentral.com/register",
"brandingDescriptorUri": "https://abcde12345.webinar.ringcentral.com/branding",
"registrantCount": 10,
"hasRealRegistrants": true
}Response
Successful response
Example response
{
"id": "123456789",
"registrationStatus": "Open",
"registrationPageUri": "https://abcde12345.webinar.ringcentral.com/register",
"brandingDescriptorUri": "https://abcde12345.webinar.ringcentral.com/branding",
"registrantCount": 10,
"hasRealRegistrants": true
}