Webex · Schema

LocationAssignedNumbersGet

Response object containing the list of assigned phone numbers/extension in the user's location.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumbers array List of assigned phone numbers/extension in user's location.
View JSON Schema on GitHub

JSON Schema

webex-locationassignednumbersget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationAssignedNumbersGet",
  "title": "LocationAssignedNumbersGet",
  "type": "object",
  "description": "Response object containing the list of assigned phone numbers/extension in the user's location.",
  "properties": {
    "phoneNumbers": {
      "type": "array",
      "description": "List of assigned phone numbers/extension in user's location.",
      "items": {
        "$ref": "#/components/schemas/LocationAssignedNumber"
      }
    }
  },
  "example": {
    "phoneNumbers": [
      {
        "phoneNumber": "+12145551234",
        "extension": "1234",
        "state": "ACTIVE",
        "phoneNumberType": "PRIMARY",
        "tollFreeNumber": false
      }
    ]
  }
}