View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Remove a track in the cloud library

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "removeTrack",
    "params": {
        "trackId": <the track identity if the tracks to remove, the same value as reported in track.id
                    in the saveTrack method>,
    }
}

Response:

{
    "jsonrpc": 2.0,
    "id": < The request identity >,
    "result": <true if the reporting succeeds, else false >
}

Specific information:

Category:Library Management Protocol