Webex · Schema

CallForwardingNumbers

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumber string Only return call queues with matching primary phone number or extension.
extension string Primary phone extension of the call queue.
type string Type of * `PRIMARY` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is a primary number or extension. * `ALTERNATE` - Indicates that the given `ph
View JSON Schema on GitHub

JSON Schema

webex-callforwardingnumbers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallForwardingNumbers",
  "title": "CallForwardingNumbers",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "phoneNumber": {
      "type": "string",
      "example": "+15558675309",
      "description": "Only return call queues with matching primary phone number or extension."
    },
    "extension": {
      "type": "string",
      "example": "7781",
      "description": "Primary phone extension of the call queue."
    },
    "type": {
      "type": "string",
      "enum": [
        "PRIMARY",
        "ALTERNATE"
      ],
      "description": "Type of\n * `PRIMARY` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is a primary number or extension.\n * `ALTERNATE` - Indicates that the given `phoneNumber` or `extension` associated with this rule's containing object is an alternate number or extension.\n"
    }
  }
}