Webex · Example Payload

Webex Read Available Queues Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Read Available Queues 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": "Read Available Queues",
  "method": "GET",
  "path": "/telephony/config/cxEssentials/wrapup/reasons/{wrapupReasonId}/availableQueues",
  "summary": "Read Available Queues",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "queues": [
          {
            "id": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvOGY1MDI2ZjMtMDZjYi00OTU3LWE0MDQtNDYyM2UzYjJjYzVi",
            "name": "Queue 1",
            "locationName": "Location 1",
            "extension": "1234"
          },
          {
            "id": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvMTM1NDg0YTMtN2Y0Yi00MTlhLWI2ZGQtMTk4NmY5MmQwYWQ1",
            "name": "Queue 2",
            "locationName": "Location 2",
            "extension": "12345"
          }
        ]
      }
    }
  ]
}