Webex · Schema
GetAutoTransferNumberObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| autoTransferNumber1 | string | Calls placed meeting the criteria in an outbound rule whose `action` is `TRANSFER_NUMBER_1` will be transferred to this number. |
| autoTransferNumber2 | string | Calls placed meeting the criteria in an outbound rule whose `action` is `TRANSFER_NUMBER_2` will be transferred to this number. |
| autoTransferNumber3 | string | Calls placed meeting the criteria in an outbound rule whose `action` is `TRANSFER_NUMBER_3` will be transferred to this number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetAutoTransferNumberObject",
"title": "GetAutoTransferNumberObject",
"type": "object",
"properties": {
"autoTransferNumber1": {
"type": "string",
"example": "1234456789",
"description": "Calls placed meeting the criteria in an outbound rule whose `action` is `TRANSFER_NUMBER_1` will be transferred to this number."
},
"autoTransferNumber2": {
"type": "string",
"example": "2234567891",
"description": "Calls placed meeting the criteria in an outbound rule whose `action` is `TRANSFER_NUMBER_2` will be transferred to this number."
},
"autoTransferNumber3": {
"type": "string",
"example": "3234567891",
"description": "Calls placed meeting the criteria in an outbound rule whose `action` is `TRANSFER_NUMBER_3` will be transferred to this number."
}
}
}