network/get
Gets a network by ID.
Authorization
Access JSON Web Token (GetNetwork)
Request Topic and Payload
Topic
dh/request
Payload Representation
{
"action": {string},
"requestId": {object},
"networkId": {int}
}
Payload Parameters
Property Name | Required | Type | Description |
---|---|---|---|
action | Yes | string | Action name: network/get |
requestId | No | object | Request unique identifier, will be passed back in the response message. |
networkId | Yes | int | Network unique identifier. |
Response Topic and Payload
Topic
dh/response/network/get@{clientId}
Payload Representation
{
"action": {string},
"status": {string},
"requestId": {object},
"network": {
"id": {int},
"name": {string},
"description": {string},
"devices": [{object}]
}
}
Payload Parameters
Property Name | Type | Description |
---|---|---|
action | string | Action name: network/get |
status | string | Operation execution status (success or error). |
requestId | object | Request unique identifier as specified in the request message. |
network | object | The Network resource representing the current network. |
network.id | int | Network unique identifier. |
network.name | string | Network display name. |
network.description | string | Network short description. |
network.devices | object | Network's devices list. |
Updated almost 7 years ago