Skip to main content
DELETE
/
v2
/
webhooks
/
{webhook_id}
Delete Webhook
curl --request DELETE \
  --url https://api.example.com/v2/webhooks/{webhook_id} \
  --header 'x-api-key: <x-api-key>'
{
  "success": true,
  "data": {
    "webhook_id": "6789abcdef0123456789abcd",
    "deleted": true
  },
  "metadata": {
    "action": "delete_webhook",
    "credits_consumed": 0,
    "timestamp": "2025-01-15T10:30:00.000000"
  }
}
Delete a webhook configuration. If monitoring is active, it will be stopped automatically.

Header Parameters

x-api-key
string
required
Your API key

Path Parameters

webhook_id
string
required
The unique identifier of the webhook to delete

Response

success
boolean
Whether the deletion was successful
data
object
{
  "success": true,
  "data": {
    "webhook_id": "6789abcdef0123456789abcd",
    "deleted": true
  },
  "metadata": {
    "action": "delete_webhook",
    "credits_consumed": 0,
    "timestamp": "2025-01-15T10:30:00.000000"
  }
}

Notes

  • This action is permanent and cannot be undone
  • Deleting a webhook does not delete the associated account
  • The account remains connected and can be used for other webhooks or API calls