Airtable webhook notification ping payload example

Airtable · event: notification ping · 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 Airtable's webhook settings to capture a real delivery. No signup.

Headers

content-type: application/json
x-airtable-content-mac: hmac-sha256=940df7ad3c6d6f2223dae742c495805a02fd3cc6b6153ed81f492384335996c3

Body

{
  "base": {
    "id": "app3KtKzLJhSkQizy"
  },
  "webhook": {
    "id": "achw8VQuvvHLKJez7"
  },
  "timestamp": "2026-08-30T09:41:27.123Z"
}

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 'x-airtable-content-mac: hmac-sha256=940df7ad3c6d6f2223dae742c495805a02fd3cc6b6153ed81f492384335996c3' \
 -d '{
  "base": {
    "id": "app3KtKzLJhSkQizy"
  },
  "webhook": {
    "id": "achw8VQuvvHLKJez7"
  },
  "timestamp": "2026-08-30T09:41:27.123Z"
}'

← All payload examples · Signature debugger · Docs