Sign Customiser

Webhooks

Delete a webhook

Copy page

Remove a webhook subscription.

DELETE /api/v2/webhooks/{webhook_id}

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

webhook_id string path required

The ID of the webhook.

Example: 1

Delete a webhook
curl https://web.signcustomiser.com/api/v2/webhooks/1 \
  --request DELETE \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "success": true
}