Webex · Schema

SelectiveAcceptCallGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
enabled boolean `true` if the Selective Accept feature is enabled.
criteria array A list of criteria specifying conditions when selective accept is in effect.
View JSON Schema on GitHub

JSON Schema

webex-selectiveacceptcallget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectiveAcceptCallGet",
  "title": "SelectiveAcceptCallGet",
  "type": "object",
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if the Selective Accept feature is enabled."
    },
    "criteria": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SelectiveAcceptCallCriteria"
      },
      "description": "A list of criteria specifying conditions when selective accept is in effect."
    }
  }
}