GET /info/bacnet
This lists the main device object’s BACnet values.
ul
Used when you are operating a browser without access to the header parameter. This allows you to choose which encoding you want to use for the response:
All these resources can be used according what the resource allows.
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
Object Name: Bacnet
| propertyName | type | description | get | 
|---|---|---|---|
| DeviceInstance | Integer | This is the BACnet instance of the device object. | GET | 
| Location | String | This is the location property of the BACnet device object. | GET | 
| Description | String | This is the description property of the BACnet device object. | GET | 
Url Example: https://1.1.1.1/api/rest/v1/info/bacnet
{
  "location": "Mecanic Room",
  "deviceInstance": 100050,
  "description": "AHU control"
}
Url Example: https://1.1.1.1/api/rest/v1/info/bacnet
<?xml version="1.0" encoding="utf-8"?>
<Bacnet>
    <DeviceInstance>100050</DeviceInstance>
    <Location>Mecanic Room</Location>
    <Description>AHU control</Description>
</Bacnet>