Webex · Schema

SelectiveAcceptCallCriteria

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Unique identifier for criteria.
scheduleName string Name of the location's schedule which determines when the selective reject is in effect.
source object If criteria are applicable for calls from any phone number, specific phone number or forwarded ones.
acceptEnabled boolean This setting specifies to choose to accept or not to accept the calls that fit within these parameters.
View JSON Schema on GitHub

JSON Schema

webex-selectiveacceptcallcriteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectiveAcceptCallCriteria",
  "title": "SelectiveAcceptCallCriteria",
  "type": "object",
  "required": [
    "id",
    "scheduleName",
    "source",
    "acceptEnabled"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBLzg2NTAxZDFlLTg1MWMtNDgwYi1hZmE2LTA5MTU4NzQ3NzdmZQ",
      "description": "Unique identifier for criteria."
    },
    "scheduleName": {
      "type": "string",
      "example": "Business Vacation",
      "description": "Name of the location's schedule which determines when the selective reject is in effect."
    },
    "source": {
      "$ref": "#/components/schemas/SelectiveAcceptCallSource",
      "description": "If criteria are applicable for calls from any phone number, specific phone number or forwarded ones."
    },
    "acceptEnabled": {
      "type": "boolean",
      "example": true,
      "description": "This setting specifies to choose to accept or not to accept the calls that fit within these parameters."
    }
  }
}