/getGateDetails
by Marco Lettieri | Gate Method detail
Method description
|
End point |
/getGateDetails |
Description |
Get detailed infos about a Gate |
Request method |
POST |
Bearer token |
Required |
Request
|
RequestParam |
None |
RequestBody |
None |
Response
|
A JSON representation of the Gate identified by an id |
Example |
{
"id":345,
"serial":"B1-XX-YY-JJ-PP",
"label":"Home gate",
"connected": true,
"local_ip": "10.50.1.1",
"public_ip": "...",
"connected": true/false,
"lastUpdate": 110987662626,
"bees_connected": 5,
"firmware_version": "firmware identifier"
}
|
Fields |
Field name |
Description |
Type |
id |
Gate identifier |
Long |
serial |
Gate serial number |
String |
label |
Gate label |
String |
local_ip |
Local IP address of the Gate in user LAN |
String |
connected |
Get the Hive connection status of the Gate |
Boolean |
lastUpdate |
The time the Hive received the last update message from the Gate |
Long |
bees_connected |
Number of BEEs this Gate is connected to |
Integer |
firmware_version |
The firmware version the Gate is running |
String |
|