v1

latestOpenAPI 3.0.3RingCentral API License Agreement2026-08-064871,2921.5 MB
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

titlestring

Webinar title

descriptionstring

User-friendly description of the Webinar

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

idstring

Internal object ID

creationTimestring date-time required

Object creation time

lastModifiedTimestring date-time required

Object last modification time

titlestring

Webinar title

descriptionstring

User-friendly description of the Webinar

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"
  }
}