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

> Dừng một gói đăng ký Preconfirmations bằng ID của gói đăng ký đó và ngừng nhận thông báo xác nhận trước.

Dừng một gói đăng ký đã bắt đầu bằng [preconfSubscribe](/docs/vi/api-reference/pre-confirmations/preconfsubscribe). 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 `preconfSubscribe` 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": "preconfUnsubscribe", "params": [24040] }
  ```
</RequestExample>

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