Appearance
Delete Webhook
Permanently delete a webhook subscriber. It stops receiving events immediately.
DELETE /v1/products/:id/webhooks/:webhookIdPath Parameters
| Parameter | Description |
|---|---|
id | Product ID |
webhookId | Webhook ID |
Response
json
{
"data": {
"message": "Webhook deleted"
}
}Example
bash
curl -X DELETE "https://api.packedge.dev/v1/products/prd_xxx/webhooks/whk_xxx" \
-H "Authorization: Bearer pk_your_api_key"Notes
- This is a hard delete and cannot be undone — to pause deliveries instead, set
enabled: falsevia Update Webhook
