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

> Dừng một gói đăng ký Parsed Streams theo ID và ngừng nhận các thông báo parsedTransactionNotification.

Dừng một gói đăng ký đã bắt đầu bằng [parsedTransactionSubscribe](/docs/vi/api-reference/parsed-streams/parsedtransactionsubscribe). Các thông báo sẽ dừng ngay lập tức.

Việc đóng kết nối sẽ xóa tất cả gói đăng ký của kết nối đó, vì vậy bạn chỉ cần phương thức này khi muốn dừng một gói đăng ký nhưng vẫn duy trì các gói đăng ký khác trên cùng kết nối.

## Nội dung yêu cầu

<ParamField body="params" type="array" required>
  Một mảng gồm một phần tử chứa ID gói đăng ký dạng số nguyên do `parsedTransactionSubscribe` trả về.
</ParamField>

## Phản hồi

<ResponseField name="result" type="boolean">
  `true` nếu gói đăng ký tồn tại và thuộc về bạn.
</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>
