Webex · Schema
AddDECTHandsetBulkPartialResponse
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| customDisplayName | string | The custom display name on the handset. |
| result | object | The result of the add handset request. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AddDECTHandsetBulkPartialResponse",
"title": "AddDECTHandsetBulkPartialResponse",
"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": 400,
"description": "The status of the add handset request. 200 indicates the handset was added successfully."
},
"error": {
"type": "object",
"required": [
"message",
"errorCode"
],
"properties": {
"message": {
"type": "string",
"example": "[Error 4516] Cannot assign user to device: {0} with line/Port: {1}",
"description": "The error message."
},
"errorCode": {
"type": "number",
"example": 4516,
"description": "The error code."
}
},
"description": "The error message if the add handset request failed."
}
},
"description": "The result of the add handset request."
}
}
}