Webex · Schema

CallQueuePut

Request body for modifying call center within queues settings for a user.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique call queue identifier.
available boolean When `true`, the agent has joined the call center.
View JSON Schema on GitHub

JSON Schema

webex-callqueueput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallQueuePut",
  "title": "CallQueuePut",
  "type": "object",
  "description": "Request body for modifying call center within queues settings for a user.",
  "example": {
    "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS85M2JjZWQ2Mi1lYWRmLTQ0MGItYThiYi03ZWQ5ZWEwNzExMTg",
    "available": true
  },
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS85M2JjZWQ2Mi1lYWRmLTQ0MGItYThiYi03ZWQ5ZWEwNzExMTg",
      "description": "Unique call queue identifier."
    },
    "available": {
      "type": "boolean",
      "example": true,
      "description": "When `true`, the agent has joined the call center."
    }
  }
}