Webinars and Sessions
Update Webinar
Updates a Webinar. The payload may contain just changed fields of a Webinar resource (it is a partial update):
- host cannot be changed, and host user information cannot be updated;
- only the settings which are not mandated at account level or are unlocked can be changed;
- in order to reset a webinar password it should be passed as an empty string;
- "registrationStatus" cannot be changed.
patch/webinar/configuration/v1/webinars/{webinarId}
Request body
Example request
{
"title": "All-Hands Webinar",
"description": "Quarterly All-hands event to present recent news about our company to employees",
"settings": {
"postWebinarRedirectUri": "https://www.acme.com/thankyou"
}
}Response
Successful response
Example response
{
"id": "78654321",
"title": "All-Hands Webinar",
"description": "Quarterly All-hands event to present recent news about our company to employees",
"settings": {
"postWebinarRedirectUri": "https://www.acme.com/thankyou"
}
}