Web API

Press shift + S to search API reference.

Webhooks

Enable/disable webhook notifications

posthttps://api.airtable.com/v0/bases/{baseId}/webhooks/{webhookId}/enableNotifications

Enables or disables notification pings for a webhook. See notification delivery.

Creator level permissions are required in order to enable or disable webhook notification pings.

Requirements

AuthenticationPersonal access token, OAuth integration
Scopewebhook:manage
User role

Base creator

Billing plansAll plans

Path parameters

baseId
string
webhookId
string

Request body

enable
boolean

Response format

This endpoint returns an empty response on success.
Request (example)
Copy
$
curl -X POST "https://api.airtable.com/v0/bases/{baseId}/webhooks/{webhookId}/enableNotifications" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
--data '{
"enable": true
}'