List Notification policies
alerting.policies.list(PolicyListParams**kwargs) -> SyncSinglePage[Policy]
GET/accounts/{account_id}/alerting/v3/policies
Get a list of all Notification policies.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
List Notification policies
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
page = client.alerting.policies.list(
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
page = page.result[0]
print(page.id){
"errors": [
{
"message": "message",
"code": 1000
}
],
"messages": [
{
"message": "message",
"code": 1000
}
],
"success": true,
"result": [
{
"id": "0da2b59ef118439d8097bdfb215203c9",
"alert_interval": "30m",
"alert_type": "universal_ssl_event_type",
"created": "2014-01-01T05:20:00.12345Z",
"description": "Something describing the policy.",
"enabled": true,
"filters": {
"actions": [
"string"
],
"affected_asns": [
"string"
],
"affected_components": [
"string"
],
"affected_locations": [
"string"
],
"airport_code": [
"string"
],
"alert_trigger_preferences": [
"string"
],
"alert_trigger_preferences_value": [
"string"
],
"enabled": [
"string"
],
"environment": [
"string"
],
"event": [
"string"
],
"event_source": [
"string"
],
"event_type": [
"string"
],
"group_by": [
"string"
],
"health_check_id": [
"string"
],
"incident_impact": [
"INCIDENT_IMPACT_NONE"
],
"input_id": [
"string"
],
"insight_class": [
"string"
],
"limit": [
"string"
],
"logo_tag": [
"string"
],
"megabits_per_second": [
"string"
],
"new_health": [
"string"
],
"new_status": [
"string"
],
"packets_per_second": [
"string"
],
"pool_id": [
"string"
],
"pop_names": [
"string"
],
"product": [
"string"
],
"project_id": [
"string"
],
"protocol": [
"string"
],
"query_tag": [
"string"
],
"requests_per_second": [
"string"
],
"selectors": [
"string"
],
"services": [
"string"
],
"slo": [
"99.9"
],
"status": [
"string"
],
"target_hostname": [
"string"
],
"target_ip": [
"string"
],
"target_zone_name": [
"string"
],
"traffic_exclusions": [
"security_events"
],
"tunnel_id": [
"string"
],
"tunnel_name": [
"string"
],
"type": [
"string"
],
"where": [
"string"
],
"zones": [
"string"
]
},
"mechanisms": {
"email": [
{
"id": "id"
}
],
"pagerduty": [
{
"id": "f174e90afafe4643bbbc4a0ed4fc8415"
}
],
"webhooks": [
{
"id": "f174e90afafe4643bbbc4a0ed4fc8415"
}
]
},
"modified": "2014-01-01T05:20:00.12345Z",
"name": "SSL Notification Event Policy"
}
]
}Returns Examples
{
"errors": [
{
"message": "message",
"code": 1000
}
],
"messages": [
{
"message": "message",
"code": 1000
}
],
"success": true,
"result": [
{
"id": "0da2b59ef118439d8097bdfb215203c9",
"alert_interval": "30m",
"alert_type": "universal_ssl_event_type",
"created": "2014-01-01T05:20:00.12345Z",
"description": "Something describing the policy.",
"enabled": true,
"filters": {
"actions": [
"string"
],
"affected_asns": [
"string"
],
"affected_components": [
"string"
],
"affected_locations": [
"string"
],
"airport_code": [
"string"
],
"alert_trigger_preferences": [
"string"
],
"alert_trigger_preferences_value": [
"string"
],
"enabled": [
"string"
],
"environment": [
"string"
],
"event": [
"string"
],
"event_source": [
"string"
],
"event_type": [
"string"
],
"group_by": [
"string"
],
"health_check_id": [
"string"
],
"incident_impact": [
"INCIDENT_IMPACT_NONE"
],
"input_id": [
"string"
],
"insight_class": [
"string"
],
"limit": [
"string"
],
"logo_tag": [
"string"
],
"megabits_per_second": [
"string"
],
"new_health": [
"string"
],
"new_status": [
"string"
],
"packets_per_second": [
"string"
],
"pool_id": [
"string"
],
"pop_names": [
"string"
],
"product": [
"string"
],
"project_id": [
"string"
],
"protocol": [
"string"
],
"query_tag": [
"string"
],
"requests_per_second": [
"string"
],
"selectors": [
"string"
],
"services": [
"string"
],
"slo": [
"99.9"
],
"status": [
"string"
],
"target_hostname": [
"string"
],
"target_ip": [
"string"
],
"target_zone_name": [
"string"
],
"traffic_exclusions": [
"security_events"
],
"tunnel_id": [
"string"
],
"tunnel_name": [
"string"
],
"type": [
"string"
],
"where": [
"string"
],
"zones": [
"string"
]
},
"mechanisms": {
"email": [
{
"id": "id"
}
],
"pagerduty": [
{
"id": "f174e90afafe4643bbbc4a0ed4fc8415"
}
],
"webhooks": [
{
"id": "f174e90afafe4643bbbc4a0ed4fc8415"
}
]
},
"modified": "2014-01-01T05:20:00.12345Z",
"name": "SSL Notification Event Policy"
}
]
}