> ## Documentation Index
> Fetch the complete documentation index at: https://thehyperstack.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Unsubscribe from Webhook

### Description

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

### Headers

<ParamField header="Authorization" type="string" required="true">
  Bearer YOUR\_API\_TOKEN — obtainable from **Hyperstack Dashboard → Settings → API Access**
</ParamField>

### Success Response Fields

<ResponseField name="success" type="boolean">
  Indicates whether the subscription was successfully removed.
</ResponseField>

<ResponseField name="message" type="string">
  A confirmation message. Value: `"Webhook unsubscribed successfully"`.
</ResponseField>

### Responses

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "success": true,
    "message": "Webhook unsubscribed successfully"
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "detail": "Invalid token or organization not found"
  }
  ```
</ResponseExample>

```bash theme={null}
curl -X POST "https://api.thehyperstack.com/v1/webhook/unsubscribe" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
```
