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

# rootUnsubscribe

> Unsubscribe from root notifications.

Unsubscribe from root notifications.

## On ThorNode

Send over the complete `wss://` URL copied from the dashboard. Unsubscribing releases the subscription's slot in the per-token cap.

## Parameters

<ParamField body="params" type="array" required>
  <Expandable title="properties" defaultOpen>
    <ParamField body="subscriptionId" type="integer" required>
      Subscription id to cancel.
    </ParamField>
  </Expandable>
</ParamField>

## Response

<ResponseField name="result" type="boolean">
  Unsubscribe success message.
</ResponseField>

<RequestExample>
  ```json Request theme={null}
  {
    "jsonrpc": "2.0",
    "id": 2,
    "method": "rootUnsubscribe",
    "params": [
      3083
    ]
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "jsonrpc": "2.0",
    "result": true,
    "id": 2
  }
  ```
</ResponseExample>
