Network
Represents a network, an isolated area where devices reside.
Methods
Method | Authorization | Uri | Description |
---|---|---|---|
list | Access JSON Web Token (GetNetwork) | GET /network | Gets list of device networks. The result list is limited to networks the client has access to. |
count | Access JSON Web Token (GetNetwork) | GET /network/count | Gets count of networks. |
get | Access JSON Web Token (GetNetwork) | GET /network/{id} | Gets information about device network and its devices. |
insert | Access JSON Web Token (ManageNetwork) | POST /network | Creates new device network. |
update | Access JSON Web Token (ManageNetwork) | PUT /network/{id} | Updates an existing device network. |
delete | 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 almost 7 years ago