Skip to main content
DELETE
/
v1
/
integrations
/
zapier
/
webhook
curl -X DELETE "https://api.caret.so/v1/integrations/zapier/webhook" \
     -H "X-API-Key: your_api_key_here" \
     -H "Content-Type: application/json" \
     -d '{
       "hookUrl": "https://hooks.zapier.com/hooks/catch/123456/abcde/"
     }'
{
  "status": "success"
}

Overview

This endpoint removes a previously registered Zapier webhook URL from your workspace. Caret will stop sending notifications to this URL immediately. This is used by Zapier to clean up webhooks when a Zap is turned off or deleted.

Authentication

All API requests must include your API key in the X-API-Key HTTP header.
X-API-Key
string
required
Your Caret API key.

Body

hookUrl
string
required
The webhook URL to be removed. Must be a valid URL starting with https://.

Response

status
string
Indicates the result of the operation. Always success if the request was processed.
curl -X DELETE "https://api.caret.so/v1/integrations/zapier/webhook" \
     -H "X-API-Key: your_api_key_here" \
     -H "Content-Type: application/json" \
     -d '{
       "hookUrl": "https://hooks.zapier.com/hooks/catch/123456/abcde/"
     }'
{
  "status": "success"
}