Cloudflare notification webhook payload example

Cloudflare · event: health_check_status_notification · content type: application/json

This is a representative sample — fake IDs, real structure. To see a payload with your data, point the provider at a capture URL (button below).

See it live, not frozen

One click creates a free capture bin with this exact payload already in it — pretty-printed, headers inspectable, replayable to your own endpoint:

Then paste the bin's URL into Cloudflare's webhook settings to capture a real delivery. No signup.

Headers

content-type: application/json
cf-webhook-auth: hookden-cloudflare-sample-webhook-secret

Body

{
  "name": "Origin health alert",
  "text": "Health check origin-api-prod changed status from healthy to unhealthy: TCP connection failed.",
  "data": {
    "account_name": "Acme Corp",
    "account_tag": "9035f53656c247e895c5a6939ae8a0e0",
    "health_check_id": "ac9d0a54c8f34b6c8e63c09e8d952b27",
    "health_check_name": "origin-api-prod",
    "new_health_status": "unhealthy",
    "new_status": "critical",
    "old_status": "ok",
    "origin_ip": "203.0.113.10",
    "reason": "TCP connection failed",
    "status_change_time": "2026-08-30T11:21:57Z",
    "time_since_last_failure": "72h14m",
    "zone_name": "acme.example",
    "zone_tag": "023e105f4ecef8ad9ca31a8372d0c353"
  },
  "ts": 1788520917,
  "account_id": "9035f53656c247e895c5a6939ae8a0e0",
  "policy_id": "749b911ea5d04344a58e45edd099b328",
  "policy_name": "Origin health alert",
  "alert_type": "health_check_status_notification",
  "alert_correlation_id": "000eaa907ed24e78946d3a93adb2ae57",
  "alert_event": "ALERT_STATE_EVENT_START"
}

Things that bite people

Send it yourself

Reproduce this delivery against any endpoint (your handler, a bin, staging):

$ curl -X POST https://your-endpoint.example/hook \
  -H 'content-type: application/json' \
  -H 'cf-webhook-auth: hookden-cloudflare-sample-webhook-secret' \
 -d '{
  "name": "Origin health alert",
  "text": "Health check origin-api-prod changed status from healthy to unhealthy: TCP connection failed.",
  "data": {
    "account_name": "Acme Corp",
    "account_tag": "9035f53656c247e895c5a6939ae8a0e0",
    "health_check_id": "ac9d0a54c8f34b6c8e63c09e8d952b27",
    "health_check_name": "origin-api-prod",
    "new_health_status": "unhealthy",
    "new_status": "critical",
    "old_status": "ok",
    "origin_ip": "203.0.113.10",
    "reason": "TCP connection failed",
    "status_change_time": "2026-08-30T11:21:57Z",
    "time_since_last_failure": "72h14m",
    "zone_name": "acme.example",
    "zone_tag": "023e105f4ecef8ad9ca31a8372d0c353"
  },
  "ts": 1788520917,
  "account_id": "9035f53656c247e895c5a6939ae8a0e0",
  "policy_id": "749b911ea5d04344a58e45edd099b328",
  "policy_name": "Origin health alert",
  "alert_type": "health_check_status_notification",
  "alert_correlation_id": "000eaa907ed24e78946d3a93adb2ae57",
  "alert_event": "ALERT_STATE_EVENT_START"
}'

← All payload examples · Signature debugger · Docs