Webex · Schema

CreateSupervisorObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the supervisor.
agents array People, workspaces and virtual lines that are eligible to receive calls.
View JSON Schema on GitHub

JSON Schema

webex-createsupervisorobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateSupervisorObject",
  "title": "CreateSupervisorObject",
  "type": "object",
  "required": [
    "id",
    "agents"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS81OGVkZTIwNi0yNTM5LTQ1ZjQtODg4Ny05M2E3ZWIwZWI3ZDI",
      "description": "A unique identifier for the supervisor."
    },
    "agents": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PostPersonPlaceVirtualLineSupervisorObject"
      },
      "description": "People, workspaces and virtual lines that are eligible to receive calls."
    }
  }
}