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

# programUnsubscribe

> Abmeldung von Benachrichtigungen über Änderungen von programmgesteuerten Konten.

## Endpunkte

Websockets sind im Mainnet und Devnet mit den folgenden URLs verfügbar:

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

<Note>Websockets haben einen 10-Minuten-Inaktivitätstimer; es wird dringend empfohlen, Health-Checks durchzuführen und jede Minute Pings zu senden, um die Websocket-Verbindung aufrechtzuerhalten.</Note>

## Berechtigungen

<ParamField query="api-key" type="string" required>
  Ihr Helius API-Schlüssel. Sie können einen kostenlos im [Dashboard](https://dashboard.helius.dev/api-keys) erhalten.
</ParamField>

## Body

<ParamField body="params" type="array" required>
  <Expandable title="Eigenschaften" defaultOpen>
    <ParamField body="subscriptionId" type="integer" required>
      ID des Kontoabonnements, das gekündigt werden soll.
    </ParamField>
  </Expandable>
</ParamField>

## Antwort

<ResponseField name="result" type="boolean">
  Erfolgsmeldung zur Abbestellung.
</ResponseField>

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

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