> ## 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.

# preconfUnsubscribe

> IDによって事前確認の購読を停止し、定期取引通知を受信しないようにします。

[preconfSubscribe](/docs/ja/api-reference/pre-confirmations/preconfsubscribe)で開始された購読を停止します。通知は即座に停止します。

接続を閉じるとそのすべての購読が削除されるため、他の購読を同じ接続で維持しつつ1つの購読を停止するためにこのメソッドが必要です。

## ボディ

<ParamField body="params" type="array" required>
  `preconfSubscribe`によって返された整数の購読IDを含む単一要素の配列。
</ParamField>

## レスポンス

<ResponseField name="result" type="boolean">
  購読が存在し、あなたのものであれば、`true`。
</ResponseField>

<RequestExample>
  ```json Request theme={"system"}
  { "jsonrpc": "2.0", "id": 2, "method": "preconfUnsubscribe", "params": [24040] }
  ```
</RequestExample>

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