Webex · Example Payload

Webex Createmyschedule Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Createmyschedule 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": "createMySchedule",
  "method": "POST",
  "path": "/telephony/config/people/me/schedules",
  "summary": "Add a User level Schedule for Call Settings",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "Holiday V2",
        "type": "businessHours",
        "events": [
          {
            "name": "Day_Shift",
            "startDate": "2020-03-18",
            "endDate": "2020-03-18",
            "startTime": "08:00",
            "endTime": "17:00",
            "allDayEnabled": false,
            "recurrence": {
              "recurForEver": true,
              "recurEndDate": "2020-03-18",
              "recurEndOccurrence": 1,
              "recurDaily": {
                "recurInterval": 1
              },
              "recurWeekly": {
                "recurInterval": 1,
                "sunday": false,
                "monday": false,
                "tuesday": false,
                "wednesday": true,
                "thursday": false,
                "friday": false,
                "saturday": false
              }
            }
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "id": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEUvU0c5c2FXUmhlU0JXTWc"
      }
    }
  ]
}