Webex · Schema

AcdObjectDevice

AcdObjectDevice schema from Webex API

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean Indicates whether the ACD object is enabled.
displayCallqueueAgentSoftkeys object Indicates the call queue agent soft key value of an ACD object.
View JSON Schema on GitHub

JSON Schema

meeting-acd-object-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/webex/refs/heads/main/json-schema/meeting-acd-object-device-schema.json",
  "title": "AcdObjectDevice",
  "description": "AcdObjectDevice schema from Webex API",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Indicates whether the ACD object is enabled."
    },
    "displayCallqueueAgentSoftkeys": {
      "$ref": "#/components/schemas/DisplayCallqueueAgentSoftkeysObject",
      "description": "Indicates the call queue agent soft key value of an ACD object."
    }
  },
  "required": [
    "enabled",
    "displayCallqueueAgentSoftkeys"
  ]
}