Skip to main content
DELETE
/
api
/
v1
/
webhooks
/
{id}
Delete Webhook
curl --request DELETE \
  --url https://api.example.com/api/v1/webhooks/{id}
Permanently delete a webhook from your organization.

Request

DELETE /api/v1/webhooks/{id}
Authorization: Bearer YOUR_API_KEY

Path Parameters

ParameterTypeRequiredDescription
idstringYesUUID of the webhook

Response

Returns 204 No Content on success.

Examples

curl -X DELETE "https://app.preclinical.dev/api/v1/webhooks/uuid" \
  -H "Authorization: Bearer $API_KEY"
Deleting a webhook is permanent. All delivery history for this webhook will also be deleted.

Errors

CodeDescription
NOT_FOUNDWebhook not found or doesn’t belong to your organization