Webex · Example Payload

Webex Query Schema Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Query Schema 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": "Query Schema",
  "method": "GET",
  "path": "/xapi/schema",
  "summary": "Query Schema",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": [
        {
          "deviceId": "Y2lzY29zcGFyazovL3VzL0RFVklDRS8wNTVkYThiNy02NWI2LTQ5NjgtOTg1ZC02ZmFjODcwOWMyMDM",
          "status": {
            "Conference.HideNonVideo.Active": {
              "schema": {
                "enum": [
                  "True",
                  "False"
                ],
                "type": "string"
              }
            },
            "Network[1..n].Wifi.Noise": {
              "schema": {
                "type": "integer"
              }
            }
          },
          "commands": {
            "UserInterface.Extensions.Icon.Upload": {
              "arguments": {
                "Id": {
                  "required": false,
                  "schema": {
                    "type": "string",
                    "maxLength": 128,
                    "minLength": 0
                  }
                }
              },
              "resultSchema": {
                "type": [
                  "object",
                  "null"
                ]
              },
              "bodySchema": {
                "schema": {
                  "type": [
                    "object",
                    "string"
                  ],
                  "maxLength": 4194304
                }
              }
            }
          }
        }
      ]
    }
  ]
}