Skip to main content
DELETE
/
api
/
webhooks
Delete Webhook
curl --request DELETE \
  --url https://encrata.com/api/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.encrata.com/llms.txt

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

Authentication

Requires an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY

Request

id
string
required
The webhook ID to delete.

Example request

curl -X DELETE https://encrata.com/api/webhooks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"id": "360cb300-d885-4c18-af2c-d259f936bb38"}'

Response

Example response

{
  "status": "deleted"
}