Invitees
Update Session Invitee
Updates a Session Invitee. 'role' is required (it can be changed from 'Panelist' to 'CoHost' or vise versa). It is disallowed to update 'linkedUser': it should be done by deleting then adding an invitee. For non-authenticated users 'firstName'/'lastName'/'email' can be specified, but not both. Implicit record created for a Webinar 'Host' cannot be modified. Also it is disallowed to change any other role to 'Host'.
put/webinar/configuration/v1/webinars/{webinarId}/sessions/{sessionId}/invitees/{inviteeId}
Request body
Example request
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"jobTitle": "Product Manager",
"role": "Panelist"
}Response
Successful response
Example response
{
"id": "78654321",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"jobTitle": "Product Manager",
"role": "Panelist",
"joinUri": "https://v.ringcentral.com/w/join/de7yd8ew7yfsdfjh899843rgj"
}