Webex · Example Payload

Webex Updatemyschedule Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Updatemyschedule 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": "updateMySchedule",
  "method": "PUT",
  "path": "/telephony/config/people/me/schedules/{scheduleType}/{scheduleId}",
  "summary": "Modify User Schedule",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "Schedule1",
        "events": [
          {
            "name": "EVENT NAME",
            "newName": "Event Name",
            "startDate": "2023-02-06",
            "endDate": "2023-02-06",
            "allDayEnabled": true,
            "recurrence": {
              "recurForEver": true,
              "recurDaily": {
                "recurInterval": 1
              }
            }
          },
          {
            "name": "Friday 2",
            "newName": "Weekly Event",
            "startDate": "2020-10-30",
            "endDate": "2020-10-30",
            "startTime": "13:00",
            "endTime": "17:00",
            "allDayEnabled": false,
            "recurrence": {
              "recurForEver": true,
              "recurWeekly": {
                "sunday": false,
                "monday": false,
                "tuesday": false,
                "wednesday": false,
                "thursday": false,
                "friday": true,
                "saturday": false
              }
            }
          }
        ]
      }
    }
  ],
  "responseExamples": []
}