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

# parsedTransactionUnsubscribe

> サブスクリプションIDによってParsed Streamsのサブスクリプションを停止し、parsedTransactionNotificationメッセージの受信を停止します。

[parsedTransactionSubscribe](/docs/ja/api-reference/parsed-streams/parsedtransactionsubscribe)で開始されたサブスクリプションを停止します。通知は即座に停止します。

接続を閉じるとすべてのサブスクリプションが削除されるため、このメソッドは接続を維持しながら1つのサブスクリプションのみを停止する必要がある場合に使用します。

## 本文

<ParamField body="params" type="array" required>
  `parsedTransactionSubscribe`によって返された整数のサブスクリプションIDを含むシングルエレメントの配列です。
</ParamField>

## レスポンス

<ResponseField name="result" type="boolean">
  そのサブスクリプションが存在し、あなたのものであった場合には`true`。
</ResponseField>

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

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