Webex · Schema

AddDECTHandsetBulkSuccessResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
customDisplayName string The custom display name on the handset.
result object The result of the add handset request.
View JSON Schema on GitHub

JSON Schema

webex-adddecthandsetbulksuccessresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddDECTHandsetBulkSuccessResponse",
  "title": "AddDECTHandsetBulkSuccessResponse",
  "type": "object",
  "required": [
    "customDisplayName",
    "result"
  ],
  "properties": {
    "customDisplayName": {
      "type": "string",
      "example": "handsetDisplayName",
      "description": "The custom display name on the handset."
    },
    "result": {
      "type": "object",
      "required": [
        "status"
      ],
      "properties": {
        "status": {
          "type": "number",
          "example": 201,
          "description": "The status of the add handset request."
        }
      },
      "description": "The result of the add handset request."
    }
  }
}