> For the complete documentation index, see [llms.txt](https://docs.shyft.to/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.shyft.to/solana/rpc-calls/solana-websockets/programunsubscribe.md).

# programUnsubscribe

Unsubscribe from program-owned account change notifications.

#### Parameters required for this RPC call

* id of account Subscription to cancel

{% tabs %}
{% tab title="Websocket" %}

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "programUnsubscribe",
  "params": [
    0
  ]
}
```

{% endtab %}

{% tab title="Response" %}

```json
{
  "jsonrpc": "2.0",
  "result": true,
  "id": 1
}
```

{% endtab %}
{% endtabs %}
