Delete a webhook subscription
Authorization
ApiKeyAuth AuthorizationBearer <token>
API key from Settings → API Keys.
In: header
Path Parameters
id*string
Response Body
application/json
application/json
curl -X DELETE "https://example.com/api/v1/webhooks/string"Empty
Update a webhook subscription PATCH
Updates a subscription. All fields are optional — send only what you want to change. Set `enabled: false` to pause delivery without deleting. Set `enabled: true` to resume — this also resets `failure_count` to 0.
Send a test event POST
Sends a synthetic `render.completed` payload to the subscription's URL immediately. Useful for verifying signature handling and endpoint connectivity before going live. `status` in the response echoes whatever your endpoint returned — `{ "ok": false, "status": 500 }` means the delivery reached your server but it errored. If your endpoint is unreachable, the response is `502`.