user/getNetwork

Gets information about user/network association.

Request Message

Authorization

Access JSON Web Token (ManageUser)

Message Representation

{
    "action": {string},
    "requestId": {object},
    "userId": {integer},
    "networkId": {integer}
}

Message Parameters

Parameter NameRequiredTypeDescription
actionYesstringAction name: user/getNetwork
requestIdNoobjectRequest unique identifier, will be passed back in the response message.
userIdYesintegerUser identifier
networkIdYesintegerNetwork identifier

Server Message

If successful, this method returns the following structure in the response body.

Message Representation

{
    "action": {string},
    "status": {string},
    "requestId": {object},
    "network": {
        "id": {int},
        "name": {string},
        "description": {string}
    }
}

Message Parameters

Property NameTypeDescription
actionstringAction name: user/getNetwork
statusstringOperation execution status (success or error).
requestIdobjectRequest unique identifier as specified in the request message.
networkobjectAssociated network object.
network.idintegerNetwork identifier.
network.namestringNetwork display name.
network.descriptionstringNetwork description.