Webex · Schema
GuestCallingNumber
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| phoneNumber | string | Phone number available for guest calling. |
| state | string | * `ACTIVE` - Phone number is in the active state. * `INACTIVE` - Phone number is in the inactive state. |
| isMainNumber | boolean | Indicates whether this is the location's main number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GuestCallingNumber",
"title": "GuestCallingNumber",
"type": "object",
"required": [
"phoneNumber",
"state",
"isMainNumber"
],
"properties": {
"phoneNumber": {
"type": "string",
"example": "+12065551212",
"description": "Phone number available for guest calling."
},
"state": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE"
],
"description": " * `ACTIVE` - Phone number is in the active state.\n * `INACTIVE` - Phone number is in the inactive state.\n",
"example": "ACTIVE"
},
"isMainNumber": {
"type": "boolean",
"example": false,
"description": "Indicates whether this is the location's main number."
}
}
}