Webex · Schema

UserBlockStateGetResponseObject

Response object containing the call block state for a specific phone number.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
blockCallsEnabled boolean Returns true if number is found in user call block list.
View JSON Schema on GitHub

JSON Schema

webex-userblockstategetresponseobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserBlockStateGetResponseObject",
  "title": "UserBlockStateGetResponseObject",
  "type": "object",
  "description": "Response object containing the call block state for a specific phone number.",
  "example": {
    "blockCallsEnabled": true
  },
  "required": [
    "blockCallsEnabled"
  ],
  "properties": {
    "blockCallsEnabled": {
      "type": "boolean",
      "description": "Returns true if number is found in user call block list."
    }
  }
}