View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Retrieves user configuration for the current user.

The parameters returned can be any parameters set with the setUserConfiguration method by an application from the same developer/company. This means that if you are developing both a player app and a controller app both these applications will be able to get configuration set by the other one. You won’t be able to get configuration set by apps developed by other developers.

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "getUserConfiguration",
    "params": [ < List of user configuration parameters to retrieve >
              "<param1>",<"param2">, ...
    ]
}

Some important things to note:

Response:

{
    "jsonrpc": 2.0,
    "id": < The request identity >,
    "result": {
        "<param1>": < String value of user configuration parameter param1 >,
        ...
    }
}

Some important things to note:

Category:Cloud Core Protocol