cURL
curl --request DELETE \ --url https://tables.fillout.com/api/v1/bases/{databaseId}/webhooks/{webhookId} \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "Webhook deleted successfully" }
Permanently removes a webhook subscription.
active: false
curl -X DELETE "https://tables.fillout.com/api/v1/bases/{databaseId}/webhooks/123" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "error": { "code": "NOT_FOUND", "message": "Webhook not found" } }
Enter your Fillout API key. Format: Bearer <api_key>
The unique identifier of the database
The unique identifier of the webhook
Webhook deleted successfully
true
"Webhook deleted successfully"
Was this page helpful?