Soft-delete a webhook subscription
Delete a webhook subscription.
Delete a webhook subscription. Stops all future deliveries.
Endpoint
http
DELETE /api/v1/webhook-subscriptions/{id}
Authentication
Bearer Personal Access Token. See Authentication.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string (uuid) | yes | The Voicegram-issued subscription id (UUID). |
Example request
curl -X DELETE https://www.voicegram.io/api/v1/webhook-subscriptions/:id \
-H "Authorization: Bearer vg_pat_<your-token>"Responses
204No Content
Subscription soft-deleted
401Unauthorized
The PAT is missing, malformed, expired, or revoked.
See Errors for the shared error response shape.
403Forbidden
PAT is valid but the account is on the free plan.
See Errors for the shared error response shape.
404Not Found
Returned whether the subscription does not exist or belongs to a different account.
See Errors for the shared error response shape.
Need help? Email support@voicegram.io.