View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Get the current volume level for the player or the mute state of a player

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "getVolume",
    "params": {
    }
}

Specific information:

Response:

{
    "jsonrpc": 2.0,
    "id": < The request identity >,
    "result": {
        "volumeLevel": < Current volume level >
        "muted": < Current mute state, true means muted, false means unmuted >
    }
}

Category:Player Protocol