Webex · Schema

ModifyAgentsForCallQueueObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
settings array
View JSON Schema on GitHub

JSON Schema

webex-modifyagentsforcallqueueobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyAgentsForCallQueueObject",
  "title": "ModifyAgentsForCallQueueObject",
  "type": "object",
  "required": [
    "settings"
  ],
  "properties": {
    "settings": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "queueId",
          "joinEnabled"
        ],
        "properties": {
          "queueId": {
            "type": "string",
            "example": "Y2lzY29zcGFyazovL3VzL0NBTExfUVVFVUUvZjM4NDIxZGYtN2MxOC00NGI1LThlNmQtNDFmZTEyMTFlZDFk",
            "description": "Unique call queue identifier."
          },
          "joinEnabled": {
            "type": "boolean",
            "example": true,
            "description": "Whether or not the call queue is enabled."
          }
        }
      }
    }
  }
}