View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Move the specified tracks from their current position to a new position in the playback queue

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "moveTracks",
    "params": {
        "playbackQueuePos": <Optional, playback queue position to move tracks before >
        "items": [
            {
                "id": < Globally unique track identity, for example soundcloud:track:somenicetrack >,
                "playbackQueuePos": < The old playback queue position of this track >,
            },
            ...
        ]
    }
}

Specific Information

Response:

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

Category:Player Protocol