Webex · Schema

Numbers

Phone number details in the call block list.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier of the phone number.
phoneNumber string Phone number which is blocked by user.
View JSON Schema on GitHub

JSON Schema

webex-numbers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Numbers",
  "title": "Numbers",
  "type": "object",
  "description": "Phone number details in the call block list.",
  "example": {
    "id": "KzE5OTc2NTQzNDE1",
    "phoneNumber": "+19976543415"
  },
  "required": [
    "id",
    "phoneNumber"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "KzEyMDI1NTUxMjEy",
      "description": "Unique identifier of the phone number."
    },
    "phoneNumber": {
      "type": "string",
      "example": "+12025551212",
      "description": "Phone number which is blocked by user."
    }
  }
}