Webex · Schema

GetCallQueueObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the call queue.
name string Unique name for the call queue.
enabled boolean Whether or not the call queue is enabled.
language string Language for the call queue.
languageCode string Language code.
firstName string First name to be shown when calls are forwarded out of this call queue. Defaults to `.`. This field has been deprecated. Please use `directLineCallerIdName` and `dialByName` instead.
lastName string Last name to be shown when calls are forwarded out of this call queue. Defaults to the `phoneNumber` if set, otherwise defaults to call group name. This field has been deprecated. Please use `directLi
timeZone string Time zone for the call queue.
phoneNumber string Primary phone number of the call queue.
extension string Extension of the call queue.
routingPrefix string Routing prefix of location.
esn string Routing prefix + extension of a person or workspace.
tollFreeNumber boolean Indicate if the number is toll free.
phoneNumberForOutgoingCallsEnabled boolean When true, indicates that the agent's configuration allows them to use the queue's Caller ID for outgoing calls.
callingLineIdPolicy string Which type of Calling Line ID Policy Selected for Call Queue. * `DIRECT_LINE` - Calling Line ID Policy will show the caller's direct line number. * `LOCATION_NUMBER` - Calling Line ID Policy will show
callingLineIdPhoneNumber string Calling line ID Phone number which will be shown if CUSTOM is selected.
alternateNumberSettings object The alternate numbers feature allows you to assign multiple phone numbers or extensions to a call queue. Each number will reach the same greeting and each menu will function identically to the main nu
callPolicies object Policy controlling how calls are routed to `agents`.
queueSettings object Overall call queue settings.
allowCallWaitingForAgentsEnabled boolean Flag to indicate whether call waiting is enabled for `agents`.
agents array People, workspaces and virtual lines that are eligible to receive calls.
allowAgentJoinEnabled boolean Whether or not to allow agents to join or unjoin a queue.
View JSON Schema on GitHub

JSON Schema

webex-getcallqueueobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetCallQueueObject",
  "title": "GetCallQueueObject",
  "type": "object",
  "required": [
    "id",
    "name",
    "enabled",
    "alternateNumberSettings",
    "callPolicies",
    "queueSettings",
    "agents"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0hVTlRfR1JPVVAvYUhaaFpUTjJNRzh5YjBBMk5EazBNVEk1Tnk1cGJuUXhNQzVpWTJ4a0xuZGxZbVY0TG1OdmJRPT0",
      "description": "A unique identifier for the call queue."
    },
    "name": {
      "type": "string",
      "example": "CallQueue-1",
      "description": "Unique name for the call queue."
    },
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "Whether or not the call queue is enabled."
    },
    "language": {
      "type": "string",
      "example": "English",
      "description": "Language for the call queue."
    },
    "languageCode": {
      "type": "string",
      "example": "en-US",
      "description": "Language code."
    },
    "firstName": {
      "type": "string",
      "example": "Hakim",
      "description": "First name to be shown when calls are forwarded out of this call queue. Defaults to `.`. This field has been deprecated. Please use `directLineCallerIdName` and `dialByName` instead."
    },
    "lastName": {
      "type": "string",
      "example": "Smith",
      "description": "Last name to be shown when calls are forwarded out of this call queue. Defaults to the `phoneNumber` if set, otherwise defaults to call group name. This field has been deprecated. Please use `directLineCallerIdName` and `dialByName` instead."
    },
    "timeZone": {
      "type": "string",
      "example": "America/Chicago",
      "description": "Time zone for the call queue."
    },
    "phoneNumber": {
      "type": "string",
      "example": "+12225555309",
      "description": "Primary phone number of the call queue."
    },
    "extension": {
      "type": "string",
      "example": "5309",
      "description": "Extension of the call queue."
    },
    "routingPrefix": {
      "type": "string",
      "example": "1234",
      "description": "Routing prefix of location."
    },
    "esn": {
      "type": "string",
      "example": "12345309",
      "description": "Routing prefix + extension of a person or workspace."
    },
    "tollFreeNumber": {
      "type": "boolean",
      "description": "Indicate if the number is toll free."
    },
    "phoneNumberForOutgoingCallsEnabled": {
      "type": "boolean",
      "example": true,
      "description": "When true, indicates that the agent's configuration allows them to use the queue's Caller ID for outgoing calls."
    },
    "callingLineIdPolicy": {
      "type": "string",
      "enum": [
        "DIRECT_LINE",
        "LOCATION_NUMBER",
        "CUSTOM"
      ],
      "description": "Which type of Calling Line ID Policy Selected for Call Queue.\n * `DIRECT_LINE` - Calling Line ID Policy will show the caller's direct line number.\n * `LOCATION_NUMBER` - Calling Line ID Policy will show the main number for the location.\n * `CUSTOM` - Calling Line ID Policy will show the value from the `callingLineIdPhoneNumber` field.\n"
    },
    "callingLineIdPhoneNumber": {
      "type": "string",
      "example": "+12072342368",
      "description": "Calling line ID Phone number which will be shown if CUSTOM is selected."
    },
    "alternateNumberSettings": {
      "type": "object",
      "required": [
        "distinctiveRingEnabled",
        "alternateNumbers"
      ],
      "properties": {
        "distinctiveRingEnabled": {
          "type": "boolean",
          "example": true,
          "description": "Distinctive Ringing selected for the alternate numbers in the call queue overrides the normal ringing patterns set for the Alternate Numbers."
        },
        "alternateNumbers": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/AlternateNumbersWithPattern"
          },
          "description": "Allows up to 10 numbers, each with an optional distinctive ring setting override."
        }
      },
      "description": "The alternate numbers feature allows you to assign multiple phone numbers or extensions to a call queue. Each number will reach the same greeting and each menu will function identically to the main number. The alternate numbers option enables you to have up to ten (10) phone numbers ring into the call queue."
    },
    "callPolicies": {
      "$ref": "#/components/schemas/GetCallQueueCallPolicyObject",
      "description": "Policy controlling how calls are routed to `agents`."
    },
    "queueSettings": {
      "$ref": "#/components/schemas/CallQueueQueueSettingsGetObject",
      "description": "Overall call queue settings."
    },
    "allowCallWaitingForAgentsEnabled": {
      "type": "boolean",
      "description": "Flag to indicate whether call waiting is enabled for `agents`."
    },
    "agents": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GetPersonPlaceVirtualLineCallQueueObject"
      },
      "description": "People, workspaces and virtual lines that are eligible to receive calls."
    },
    "allowAgentJoinEnabled": {
      "type": "boolean",
      "description": "Whether or not to allow agents to join or unjoin a queue."
    }
  }
}