> ## 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/ko/api-reference/parsed-streams/parsedtransactionsubscribe)로 시작된 구독을 중지합니다. 알림은 즉시 중단됩니다.

연결을 닫으면 모든 구독이 제거되므로, 동일한 연결에서 다른 구독을 유지하면서 하나의 구독만 중지하려면 이 메서드가 필요합니다.

## Body

<ParamField body="params" type="array" required>
  `parsedTransactionSubscribe`가 반환한 정수 구독 ID를 포함하는 단일 요소 배열.
</ParamField>

## Response

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