> ## 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 停止解析流订阅，停止接收 parsedTransactionNotification 消息。

停止使用 [parsedTransactionSubscribe](/docs/zh/api-reference/parsed-streams/parsedtransactionsubscribe) 开始的订阅。通知会立即停止。

关闭连接会移除其所有订阅，因此只需此方法即可停止一个订阅，同时保持同一连接上的其他订阅。

## 正文

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