Webex · Example Payload

Webex Create A Schedule Event Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Create A Schedule Event 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": "Create a Schedule Event",
  "method": "POST",
  "path": "/telephony/config/locations/{locationId}/schedules/{type}/{scheduleId}/events",
  "summary": "Create a Schedule Event",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "New Year's Day",
        "startDate": "2022-01-01",
        "endDate": "2022-01-01",
        "allDayEnabled": true,
        "recurrence": {
          "recurYearlyByDate": {
            "dayOfMonth": 1,
            "month": "JANUARY"
          }
        }
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "example": {
        "id": "Y2lzY29zcGFyazovL3VzL1NDSEVEVUxFX0VWRU5UL1RtVjNJRmxsWVhJbmN5QkVZWGs"
      }
    }
  ]
}