Webex · Schema

UserBlockGetResponseObject

Response object containing the list of blocked phone numbers for a user.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
numbers array Numbers for the call block list.
View JSON Schema on GitHub

JSON Schema

webex-userblockgetresponseobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserBlockGetResponseObject",
  "title": "UserBlockGetResponseObject",
  "type": "object",
  "description": "Response object containing the list of blocked phone numbers for a user.",
  "example": {
    "numbers": [
      {
        "id": "KzE4OTc2NTQzMjE1",
        "phoneNumber": "+18976543215"
      },
      {
        "id": "KzE4OTc2NTQzMzE1",
        "phoneNumber": "+18976543315"
      },
      {
        "id": "KzE4OTc2NTQzNDE1",
        "phoneNumber": "+18976543415"
      },
      {
        "id": "KzE5OTc2NTQzNDE1",
        "phoneNumber": "+19976543415"
      }
    ]
  },
  "required": [
    "numbers"
  ],
  "properties": {
    "numbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Numbers"
      },
      "description": "Numbers for the call block list."
    }
  }
}