View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Shuffle all tracks in the playback queue and put the currently playing track as the first track. Playback will not be disrupted when this method is called.

Request:

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

Specific information:

Response:

{
    "jsonrpc": 2.0,
    "id": < The request identity >,
    "result": {
        "result": <true if tracks were successfully shuffled >
        "playbackQueuePos": < Position of the currently playing track within the playback queue >
    }
}

Category:Player Protocol