Skip to content

Delete a Webhook Subscription

DELETE https://api.slidespeak.co/api/v1/webhook/unsubscribe

Removes an existing webhook subscription, stopping further notifications to your specified endpoint. Use this endpoint to manage your integrations and ensure you only receive relevant updates. Requires the webhook ID returned when the subscription was created.


Content-Type: string

application/json

X-API-Key: string

The API key to use for the request.


<YOUR_API_KEY>


webhook_id: string

The ID of the webhook subscription to delete.


Terminal window
curl -X DELETE https://api.slidespeak.co/api/v1/webhook/unsubscribe -H "Content-Type: application/json" -H "x-api-key: <YOUR_API_KEY>" -d '{
"webhook_id": "<WEBHOOK_ID>"
}'

{}