View on GitHub

ickstream-docs

Public documentation about the ickStream Music Platform

Remove a user identity from the current user account. To add an identity to a user see Add identity to user account

Request:

{
    "jsonrpc": 2.0,
    "id": < A unique number used to correlate requests with responses, see JSON-RPC specification for more information >,
    "method": "removeUserIdentity",
    "params": {
        "type": <Type of identity, for example "email">,
        "identity": <The actual identity, for example "user1@example.com">
    }
}

Response:

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

Some important things to note:

Category:Cloud Core Protocol