Represents a network, an isolated area where devices reside.
Methods
Method | Authorization | Uri | Description |
---|---|---|---|
Access JSON Web Token (GetNetwork) | GET /network | Gets list of device networks. | |
Access JSON Web Token (GetNetwork) | GET /network/count | Gets count of networks. | |
Access JSON Web Token (GetNetwork) | GET /network/{id} | Gets information about device network and its devices. | |
Access JSON Web Token (ManageNetwork) | POST /network | Creates new device network. | |
Access JSON Web Token (ManageNetwork) | PUT /network/{id} | Updates an existing device network. | |
Access JSON Web Token (ManageNetwork) | DELETE /network/{id} | Deletes an existing device network. |
Resource Representation
{
"id": {integer},
"name": {string},
"description": {string}
}
Property Name | Type | Description |
---|---|---|
id | integer | Network identifier |
name | string | Network display name |
description | string | Network description |
Updated 3 years ago