Webex · Example Payload

Webex Deletedevicebackgroundimages Example

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Webex Deletedevicebackgroundimages 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": "deleteDeviceBackgroundImages",
  "method": "DELETE",
  "path": "/telephony/config/devices/backgroundImages",
  "summary": "Delete Device Background Images",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "backgroundImages": [
          {
            "fileName": "CompanyLogoBlue",
            "forceDelete": true
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "items": [
          {
            "fileName": "CompanyLogoBlue",
            "result": {
              "status": 200
            }
          }
        ],
        "count": 2
      }
    },
    {
      "status": "206",
      "contentType": "application/json",
      "example": {
        "items": [
          {
            "fileName": "CompanyLogoBlue",
            "result": {
              "status": 200
            }
          },
          {
            "fileName": "CompanyLogoRed",
            "result": {
              "status": 400,
              "error": {
                "message": "The image could not be deleted.",
                "errorCode": 4305
              }
            }
          }
        ],
        "count": 2
      }
    }
  ]
}