View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Retrieves information about which item times that can be added/removed in which contexts using the addItem and removeItem methods in the Content Access Protocol.

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "getManagementProtocolDescription",
    "params": {
        "offset": <Optional, numeric index of first item to retrieve >
        "count": <Optional, number of items to retrieve >
    }
}
{
    "jsonrpc": 2.0,
    "id": < The request identity >,
    "result": {
        "offset": <numeric index of the first item which is part of this response,
                           this is set based on the "offset" parameter provided in the request >
        "count": < number of items in this response, if "count" has been specified in request
                           it is the maximum value of this item >,
        "countAll": <total number of items available, ignoring any limitation specified
                             with offset and count request parameters>,
        "items": [
            { < First context supported >
                "contextId": < The id of this browsing context >
                "supportedTypes": [
                    < List of types which can be added/removed with
                                          addItem and removeItem methods>
                ]
            }
        ]
    }
}

A bit more detail:

Category:Content Access Protocol