View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Update the user friendly name for a specific device owned by current user

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "setDeviceName",
    "params": {
        "devciceId": <id of the device to update>
        "name": <The new user friendly name of the device>
    }
}

Response:

{
    "jsonrpc": 2.0,
    "id": < The request identity >
    "result": {
        "id": < Unique identity for this device >,
        "name": < The new user friendly name of the device >,
        "model": < Model identification for this device >,
        "address": < Current local IP-address of this device >,
        "publicAddress": < Current public IP-address of this device (may not be accessible due to firewalls) >,
    }
}

Some important things to note:

Category:Cloud Core Protocol