Methods

Unsubscribe All

Unsubscribe from all topics

Public · Returns response

Method unsubscribeAll

Unsubscribe from all topics

Request

This method takes no parameters.

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "unsubscribeAll"
}

Response

On success the server replies with a JSON-RPC response matching the request id and the fields below.

unsubscribed*string[]
See all topics

Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "unsubscribed": [
      "wallet/deposit"
    ]
  }
}

On failure the server replies with a JSON-RPC error object matching the request id. See Errors for the full list of codes and recovery hints.