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

# signatureUnsubscribe

> 署名確認通知の登録を解除します。

## エンドポイント

メインネットとデブネットで以下のURLでWebSocketが利用可能です:

* **Mainnet** `wss://mainnet.helius-rpc.com/?api-key=<api-key>`
* **Devnet** `wss://devnet.helius-rpc.com/?api-key=<api-key>`

<Note>WebSocketには10分間の非アクティブタイマーがあります。WebSocket接続を維持するために、ヘルスチェックを実装し、毎分pingを送信することを強くおすすめします。</Note>

## 認証

<ParamField query="api-key" type="string" required>
  HeliusのAPIキーです。[ダッシュボード](https://dashboard.helius.dev/api-keys)で無料で取得できます。
</ParamField>

## ボディ

<ParamField body="params" type="array" required>
  <Expandable title="properties" defaultOpen>
    <ParamField body="subscriptionId" type="integer" required>
      キャンセルするサブスクリプションID。
    </ParamField>
  </Expandable>
</ParamField>

## レスポンス

<ResponseField name="result" type="boolean">
  登録解除の成功メッセージ。
</ResponseField>

<RequestExample>
  ```json Request theme={"system"}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "signatureUnsubscribe",
    "params": [
      0
    ]
  }
  ```
</RequestExample>

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