GET
/protocols/bacnet
This resource is the root of all BACnet objects and properties.
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: Protocol
Property Name | Type | Description | Method |
---|---|---|---|
Name | String | This property is the protocol name. | GET |
BacnetLocal | Object | This object represents the local access of the current protocol. | GET |
Communication | Object | This object represents all the BACnet communication values. | GET |
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet
{
"communication": {
"href": "/api/rest/v1/protocols/bacnet/communication",
"name": "communication"
},
"local": {
"href": "/api/rest/v1/protocols/bacnet/local",
"name": "local"
},
"name": "BACnet"
}
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet
<?xml version="1.0" encoding="utf-8"?>
<Protocol>
<Name>BACnet</Name>
<Local>
<Href>/api/rest/v1/protocols/bacnet/local</Href>
<Name>local</Name>
</Local>
<Communication>
<Href>/api/rest/v1/protocols/bacnet/communication</Href>
<Name>communication</Name>
</Communication>
</Protocol>
Eclypse REST API Document Revision 10.2