メインコンテンツへスキップ
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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.caret.so/llms.txt

Use this file to discover all available pages before exploring further.

概要

このエンドポイントは、ワークスペースから以前登録されたZapier Webhook URLを削除します。CaretはこのURLへの通知送信を即座に停止します。 これはZapがオフまたは削除されたときにZapierがWebhookをクリーンアップするために使用されます。

認証

すべてのAPIリクエストは Authorization: Bearer <API_KEY> で認証します。
Authorization
string
必須
Bearerトークン。形式: Bearer <API_KEY>

Body

hookUrl
string
必須
削除するWebhook URL。https://で始まる有効なURLである必要があります。

レスポンス

status
string
操作の結果を示します。リクエストが処理された場合は常にsuccess

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"
}