Skip to main content
DELETE
/
v1
/
integrations
/
zapier
/
webhook

curl -X DELETE "https://api.caret.so/v1/integrations/zapier/webhook" \
     -H "Authorization: Bearer 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 use Authorization: Bearer <API_KEY>.
Authorization
string
required
Bearer token. Format: Bearer <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 "Authorization: Bearer your_api_key_here" \
     -H "Content-Type: application/json" \
     -d '{
       "hookUrl": "https://hooks.zapier.com/hooks/catch/123456/abcde/"
     }'
{
  "status": "success"
}