Webex · Schema

AcdObjectDevice

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

webex-acdobjectdevice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AcdObjectDevice",
  "title": "AcdObjectDevice",
  "type": "object",
  "required": [
    "enabled",
    "displayCallqueueAgentSoftkeys"
  ],
  "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."
    }
  }
}