View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

The purpose of the removeItem method is to remove an item (artist, album, track, …) from a content service context which has previously been added with the addItem method.

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "removeItem",
    "params": {
        "contextId": < Context which the item should be added to>
        "itemId": < Item identifier for the item to remove, this corresponds to the *id* attribute returned from findItems method>
    }
}

Specific information

Response:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "result": < true or false >
}

Specific information

Category:Content Access Protocol