| title | slug | excerpt | hidden | metadata | createdAt | updatedAt | ||||
|---|---|---|---|---|---|---|---|---|---|---|
user/getNetwork |
usergetnetwork |
false |
|
Mon Jul 31 2017 07:30:33 GMT+0000 (Coordinated Universal Time) |
Tue Feb 18 2025 13:02:59 GMT+0000 (Coordinated Universal Time) |
Gets information about user/network association.
Authorization
Access JSON Web Token (ManageUser)
Message Representation
{
"action": {string},
"requestId": {object},
"userId": {integer},
"networkId": {integer}
}
Message Parameters
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| action | Yes | string | Action name: user/getNetwork |
| requestId | No | object | Request unique identifier, will be passed back in the response message. |
| userId | Yes | integer | User identifier |
| networkId | Yes | integer | Network identifier |
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 Name | Type | Description |
|---|---|---|
| action | string | Action name: user/getNetwork |
| status | string | Operation execution status (success or error). |
| requestId | object | Request unique identifier as specified in the request message. |
| network | object | Associated network object. |
| network.id | integer | Network identifier. |
| network.name | string | Network display name. |
| network.description | string | Network description. |