GET
/protocols/bacnet/remote/devices/{remoteDeviceId}/objects/{objectType}/{objectInstance}/properties
FROM API REVISION 6.0
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.
The $select system query option allows clients to request a limited set of properties for each entity.
The value pass in the parameter can be:
*
(star) : This will show all child elements.,
(comma).If there is no value after the select query option, the parameter will be ignored. All the values that are not specified will not be printed in the response.
The $expand system query option specifies the related resources to be included in line with retrieved resources.
The value passed in the parameter can be:
*
(star): This will expand all child elements.,
(comma).The $expand system query option can be used with the $levels query option, to expand recursively.
The $orderby system query option allows clients to request collections in a particular order.
The value passed in the parameter can be "asc" for ascending order and or "desc" for descending order. If you prefer, it is possible to order the elements according to a specific value (see the example).
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.
This is the object type string value.
This is the instance of a specific BACnet object type.
Cyclic navigation properties can be recursively expanded using the special $levels option. This query option is used in addition to the $expand query options.
The value of the $levels option is a positive integer to specify the number of levels to expand.
GET api/rest/v1/info?$expand=extensionManagement($levels=2)
This is the instance number of the device.
Object Name: BacnetProperties
Property Name | Type | Description | Method |
---|---|---|---|
BacnetProperties | Array <BacnetProperty> |
This object is an array of BACnetProperty objects. | GET |
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties
[
{
"href": "/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/segmentation-supported",
"name": "segmentationSupported"
},
{
"href": "/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/object-type",
"name": "objectType"
},
{
"href": "/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/vendor-identifier",
"name": "vendorIdentifier"
},
{
"href": "/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/max-apdu-length-accepted",
"name": "maxApduLengthAccepted"
},
{
"href": "/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/description",
"name": "description"
}
]
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties
<BacnetProperties>
<BacnetProperty>
<Href>
/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/vendor-name
</Href>
<Name>vendorName</Name>
</BacnetProperty>
<BacnetProperty>
<Href>
/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/object-type
</Href>
<Name>objectType</Name>
</BacnetProperty>
<BacnetProperty>
<Href>
/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/description
</Href>
<Name>description</Name>
</BacnetProperty>
<BacnetProperty>
<Href>
/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/object-name
</Href>
<Name>objectName</Name>
</BacnetProperty>
<BacnetProperty>
<Href>
/api/rest/v1/protocols/bacnet/remote/devices/83218/objects/device/83218/properties/segmentation-supported
</Href>
<Name>segmentationSupported</Name>
</BacnetProperty>
<BacnetProperties>