Webex · Schema

QueueAgentsDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Id of an agent in WxCC
ciUserId string Id of an agent in Common Identity
View JSON Schema on GitHub

JSON Schema

webex-queueagentsdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueueAgentsDTO",
  "title": "QueueAgentsDTO",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Id of an agent in WxCC",
      "example": "b0503c7f-d13c-4d74-9eb5-64f3c818b8c7"
    },
    "ciUserId": {
      "type": "string",
      "description": "Id of an agent in Common Identity",
      "example": "c71876ae-ddfa-4049-9a1b-298535152578"
    }
  },
  "required": [
    "id"
  ]
}