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

# logsUnsubscribe

> 트랜잭션 로깅 구독 취소.

## 엔드포인트

웹소켓은 메인넷과 데브넷에서 다음 URL로 제공됩니다:

* **Mainnet** `wss://mainnet.helius-rpc.com/?api-key=<api-key>`
* **Devnet** `wss://devnet.helius-rpc.com/?api-key=<api-key>`

<Note>웹소켓은 비활성화 타이머가 10분입니다; 연결 유지를 위해 매분 ping을 보내는 헬스 체크 구현을 강력히 권장합니다.</Note>

## 권한

<ParamField query="api-key" type="string" required>
  귀하의 Helius API 키. [대시보드](https://dashboard.helius.dev/api-keys)에서 무료로 얻을 수 있습니다.
</ParamField>

## 본문

<ParamField body="params" type="array" required>
  <Expandable title="properties" defaultOpen>
    <ParamField body="subscriptionId" type="integer" required>
      취소할 구독 ID.
    </ParamField>
  </Expandable>
</ParamField>

## 응답

<ResponseField name="result" type="boolean">
  구독 취소 성공 메시지.
</ResponseField>

<RequestExample>
  ```json Request theme={"system"}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "logsUnsubscribe",
    "params": [
      24040
    ]
  }
  ```
</RequestExample>

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