Skip to main content
DELETE
/
webhooks
/
{webhook_id}
Delete a webhook
curl --request DELETE \
  --url https://api.godiligent.ai/webhooks/{webhook_id} \
  --header 'X-API-KEY: <api-key>'

Endpoint

DELETE /webhooks/{webhook_id} Removes a webhook. Event delivery to its endpoint stops immediately — no further events are sent, and there are no dangling deliveries.

Path Parameters

ParameterTypeRequiredDescription
webhook_idstringYesThe ID of the webhook to delete.

Responses

204 No Content

The webhook was deleted. No response body.

404 Not Found

No webhook with that ID exists for the authenticated customer.

500 Internal Server Error

Unexpected error occurred.

Authentication

This endpoint requires authentication. You can only delete webhooks owned by the authenticated customer.

Authorizations

X-API-KEY
string
header
required

Path Parameters

webhook_id
string
required

ID of the webhook to delete.

Response

Webhook deleted.