`DELETE /v1/me/webhooks/{id}` — deactivate a webhook subscription (soft-delete: is_active=false, keeping its delivery history).
DELETE
`DELETE /v1/me/webhooks/{id}` — deactivate a webhook subscription
(soft-delete: is_active=false, keeping its delivery history).
Previous
`PATCH /v1/me/webhooks/{id}` — partial update of a subscription
keeping its `id` (and so its `webhook_deliveries` history) intact.The previous "delete + re-create" workflow orphaned the audit
trail under a new id. This endpoint keeps continuity for
dashboards and replay.
Returns the full webhook row after the update. 404 if the id
belongs to a different user (no existence-leak).
Next
`DELETE /v1/me/webhooks/{id}` — deactivate a webhook subscription
(soft-delete: is_active=false, keeping its delivery history).