Webex · Example Payload

Webex Createlocation Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Createlocation 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": "createLocation",
  "method": "POST",
  "path": "/locations",
  "summary": "Create a Location",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "name": "Denver",
        "timeZone": "America/Chicago",
        "announcementLanguage": "fr_fr",
        "preferredLanguage": "en_us",
        "address": {
          "address1": "123 Some St.",
          "address2": "Suite 456",
          "city": "Supercity",
          "state": "Goodstate",
          "postalCode": "12345",
          "country": "US"
        },
        "latitude": "12.935784",
        "longitude": "77.697332",
        "notes": "123 Some St. Denver location"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "example": {
        "id": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzljYTNhZmQ3LTE5MjYtNGQ0ZS05ZDA3LTk5ZDJjMGU4OGFhMA"
      }
    }
  ]
}