Webex · Schema
TransferNumberPatch
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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferNumberPatch",
"title": "TransferNumberPatch",
"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": "\"+1201203650\"",
"description": "When calling a specific call type, this workspace will be automatically transferred to another number."
},
"autoTransferNumber2": {
"type": "string",
"example": "\"+1201203651\"",
"description": "When calling a specific call type, this workspace will be automatically transferred to another number."
},
"autoTransferNumber3": {
"type": "string",
"example": "\"+1201203652\"",
"description": "When calling a specific call type, this workspace will be automatically transferred to another number."
}
}
}