Webex · Schema

SelectiveRejectCallSettingsGet

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

webex-selectiverejectcallsettingsget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectiveRejectCallSettingsGet",
  "title": "SelectiveRejectCallSettingsGet",
  "type": "object",
  "required": [
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "example": true,
      "description": "`true` if the selective reject feature is enabled."
    },
    "criteria": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SelectiveRejectCallCriteria"
      },
      "description": "A list of criteria specifying conditions when selective reject is in effect."
    }
  },
  "example": {
    "enabled": true,
    "criteria": [
      {
        "id": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzU0MzgzODQzNTA5NzY",
        "scheduleName": "CustomHoliday(Group)",
        "source": "ALL_NUMBERS",
        "rejectEnabled": true
      }
    ]
  }
}