Skip to content
  • Auto
  • Light
  • Dark
Get Started
View as Markdown
Copy Markdown

Open in Claude
Open in ChatGPT

Delete specific webhooks

delete/api/v2/account/webhooks

Delete specific webhooks from your account.

Body ParametersExpand Collapse
webhooks: array of string

Array of webhook URLs to delete

type: optional "receive" or "call_log" or "line_blocked" or 3 more

Webhook type (default to 'receive')

Accepts one of the following:
"receive"
"call_log"
"line_blocked"
"line_assigned"
"outbound"
"contact_created"
ReturnsExpand Collapse
status: "OK" or "ERROR"
Accepts one of the following:
"OK"
"ERROR"
message: optional string
Delete specific webhooks
curl https://api.sendblue.co/api/v2/account/webhooks \
    -X DELETE \
    -H 'Content-Type: application/json' \
    -H "sb-api-key-id: $SENDBLUE_API_API_KEY" \
    -H "sb-api-secret-key: $SENDBLUE_API_API_SECRET" \
    -d '{
          "webhooks": [
            "https://example.com"
          ]
        }'
{
  "status": "OK",
  "message": "message"
}
Returns Examples
{
  "status": "OK",
  "message": "message"
}