Skip to content

Delete a Webhook Subscription

DELETE https://api.slidespeak.co/api/v2/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.

Headers


Content-Type: string
application/json
X-API-Key: string
The API key to use for the request.
<YOUR_API_KEY>

Body Parameters


webhook_id: string
The ID of the webhook subscription to delete.

Code Examples


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

Response


{}