> ## 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/ko/api-reference/pre-confirmations/preconfsubscribe)로 시작한 구독을 중지합니다. 알림은 즉시 중지됩니다.

연결을 닫으면 모든 구독이 제거되므로 이 메서드는 같은 연결의 다른 구독을 유지하면서 하나의 구독만 중지해야 할 때 필요합니다.

## 본문

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