swapUnsubscribe

Unsubscribes from a previous subscription started with swapSubscribe


Request Parameters

  • subscription_id

    unsigned integer
    The subscription id which was returned when swapSubscribe was called.

Response Fields

  • <boolean>

    boolean
    True when successfully unsubscribed. You will no longer receive notifications associated with this subscription.

Request Example

{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "swapUnsubscribe",
    "params": {
        "subscription_id": 1
    }
}

Response Example

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