Webex · Schema

TransferNumberGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
useCustomTransferNumbers boolean When `true`, use custom settings for the transfer numbers category of outbound permissions.
autoTransferNumber1 string When calling a specific call type, this workspace will be automatically transferred to another number.
autoTransferNumber2 string When calling a specific call type, this workspace will be automatically transferred to another number.
autoTransferNumber3 string When calling a specific call type, this workspace will be automatically transferred to another number.
View JSON Schema on GitHub

JSON Schema

webex-transfernumberget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferNumberGet",
  "title": "TransferNumberGet",
  "type": "object",
  "required": [
    "useCustomTransferNumbers"
  ],
  "properties": {
    "useCustomTransferNumbers": {
      "type": "boolean",
      "example": true,
      "description": "When `true`, use custom settings for the transfer numbers category of outbound permissions."
    },
    "autoTransferNumber1": {
      "type": "string",
      "example": "\"+1205553650\"",
      "description": "When calling a specific call type, this workspace will be automatically transferred to another number."
    },
    "autoTransferNumber2": {
      "type": "string",
      "example": "\"+1205553651\"",
      "description": "When calling a specific call type, this workspace will be automatically transferred to another number."
    },
    "autoTransferNumber3": {
      "type": "string",
      "example": "\"+1205553652\"",
      "description": "When calling a specific call type, this workspace will be automatically transferred to another number."
    }
  }
}