Webex · Example Payload

Webex Update A Schedule Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Update A Schedule Example is an example object payload from Webex, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "Update a Schedule",
  "method": "PUT",
  "path": "/telephony/config/locations/{locationId}/schedules/{type}/{scheduleId}",
  "summary": "Update a Schedule",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "NEW-YEAR-HOLIDAY",
        "events": [
          {
            "name": "New Year",
            "newName": "New Year's Day",
            "startDate": "2022-01-01",
            "endDate": "2022-01-01",
            "allDayEnabled": true,
            "recurrence": {
              "recurForEver": true,
              "recurYearlyByDate": {
                "dayOfMonth": 1,
                "month": "JANUARY"
              }
            }
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "id": "Y2lzY29zcGFyazovL3VzL1NDSEVEVUxFL1RrVlhMVmxGUVZJdFNFOU1TVVJCV1E"
      }
    }
  ]
}