Webex · Schema
PriorityAlertCriteriaGet
Priority Alert individual Criterion detailed settings response object containing schedule, phone numbers, and notification configurations.
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the priority alert criteria. |
| scheduleName | string | Name of the schedule associated with the criteria. |
| scheduleType | string | Type of the schedule. * `businessHours` - Business hours schedule type. * `holidays` - Holidays schedule type. |
| scheduleLevel | string | * `PEOPLE` - The schedule is at the user level. * `LOCATION` - The schedule is at the location level. |
| callsFrom | string | Specifies the type of callsFrom, categorizing incoming data based on callsFrom types or numbers that match the current criteria. * `ANY_PHONE_NUMBER` - The criteria applies to any phone number. * `SEL |
| anonymousCallersEnabled | boolean | Indicates whether anonymous callers are included in this criteria. |
| unavailableCallersEnabled | boolean | Indicates whether unavailable callers are included in this criteria. |
| phoneNumbers | array | List of phone numbers that this criteria applies to. |
| notificationEnabled | boolean | Determines whether priority alerting is applied for calls matching this criteria. If `true`, priority alerting is applied. If `false`, this criteria acts as a 'Don't Alert' rule, preventing priority a |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PriorityAlertCriteriaGet",
"title": "PriorityAlertCriteriaGet",
"type": "object",
"description": "Priority Alert individual Criterion detailed settings response object containing schedule, phone numbers, and notification configurations.",
"example": {
"id": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzU0MzgzODQzNTA5NzY",
"scheduleName": "CustomHoliday(Group)",
"scheduleType": "holidays",
"scheduleLevel": "PEOPLE",
"callsFrom": "SELECT_PHONE_NUMBERS",
"anonymousCallersEnabled": false,
"unavailableCallersEnabled": false,
"phoneNumbers": [
"+16177817765"
],
"notificationEnabled": false
},
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the priority alert criteria.",
"example": "Y2lzY29zcGFyazovL3VzL0NSSVRFUklBL1oxNzU0MzgzODQzNTA5NzY"
},
"scheduleName": {
"type": "string",
"description": "Name of the schedule associated with the criteria.",
"example": "CustomHoliday(Group)"
},
"scheduleType": {
"type": "string",
"enum": [
"businessHours",
"holidays"
],
"description": "Type of the schedule.\n * `businessHours` - Business hours schedule type.\n * `holidays` - Holidays schedule type.\n"
},
"scheduleLevel": {
"type": "string",
"enum": [
"PEOPLE",
"LOCATION"
],
"description": " * `PEOPLE` - The schedule is at the user level.\n * `LOCATION` - The schedule is at the location level.\n"
},
"callsFrom": {
"type": "string",
"enum": [
"ANY_PHONE_NUMBER",
"SELECT_PHONE_NUMBERS"
],
"description": "Specifies the type of callsFrom, categorizing incoming data based on callsFrom types or numbers that match the current criteria.\n * `ANY_PHONE_NUMBER` - The criteria applies to any phone number.\n* `SELECT_PHONE_NUMBERS` - The criteria applies to selected phone numbers.\n"
},
"anonymousCallersEnabled": {
"type": "boolean",
"description": "Indicates whether anonymous callers are included in this criteria.",
"example": false
},
"unavailableCallersEnabled": {
"type": "boolean",
"description": "Indicates whether unavailable callers are included in this criteria.",
"example": false
},
"phoneNumbers": {
"type": "array",
"description": "List of phone numbers that this criteria applies to.",
"items": {
"type": "string",
"description": "Phone number that the criteria applies to."
}
},
"notificationEnabled": {
"type": "boolean",
"description": "Determines whether priority alerting is applied for calls matching this criteria. If `true`, priority alerting is applied. If `false`, this criteria acts as a 'Don't Alert' rule, preventing priority alerting. Criteria with `notificationEnabled` set to `false` (Don't Alert) take precedence over criteria with `notificationEnabled` set to `true` (Alert).",
"example": false
}
}
}