Skip to main content
POST
https://api.thehyperstack.com
/
v1
/
webhook
/
unsubscribe
Unsubscribe from Webhook
curl --request POST \
  --url https://api.thehyperstack.com/v1/webhook/unsubscribe
{
  "success": true,
  "message": "Webhook unsubscribed successfully"
}

Description

This endpoint allows you to remove your organization’s existing webhook subscription. All event subscriptions associated with your account will be deleted.

Headers

Authorization
string
required
Bearer YOUR_API_TOKEN — obtainable from Hyperstack Dashboard → Settings → API Access

Success Response Fields

success
boolean
Indicates whether the subscription was successfully removed.
message
string
A confirmation message. Value: "Webhook unsubscribed successfully".

Responses

{
  "success": true,
  "message": "Webhook unsubscribed successfully"
}
curl -X POST "https://api.thehyperstack.com/v1/webhook/unsubscribe" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
Last modified on February 22, 2026