Webex · Example Payload

Webex Createmyscheduleevent Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Createmyscheduleevent 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": "createMyScheduleEvent",
  "method": "POST",
  "path": "/telephony/config/people/me/schedules/{scheduleType}/{scheduleId}/events",
  "summary": "Add an event for a User Schedule",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "Schedule1",
        "startDate": "2023-02-06",
        "endDate": "2023-02-06",
        "allDayEnabled": true,
        "startTime": "09:00",
        "endTime": "18:00",
        "recurrence": {
          "recurForEver": false,
          "recurEndDate": "2023-02-06",
          "recurEndOccurrence": 1,
          "recurDaily": {
            "recurInterval": 1
          },
          "recurWeekly": {
            "sunday": false,
            "monday": false,
            "tuesday": false,
            "wednesday": false,
            "thursday": false,
            "friday": true,
            "saturday": false
          }
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "id": "Y2lzY29zcGFyazovL3VzL1VTRVJfU0NIRURVTEVfRVZFTlQvUlZaRlRsUk9RVTFG"
      }
    }
  ]
}