GET /protocols/enocean/devices/{enoceanDeviceId}/
FROM API REVISION 7.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.
To address the raw value of a primitive property, clients append a path segment containing the string $value to the property URL.
To use this query option you need to use the classic resource and add the element name you want to print followed by the query string name.
<span class="warning"><span class="glyphicon glyphicon-warning-sign" aria-hidden="true"> Be careful, the parameter query string is used in the URL and is not like other parameters.
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:
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.
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 ID of the enOcean device.
The property is called DeviceId
.
Object Name: Device
Property Name | Type | Description | Method |
---|---|---|---|
DeviceId | Integer | The Id of the enOcean. This property's type is a Long | GET |
DeviceType | Integer | The type of the enOcean device. This property's type is a Long | GET |
RSSI | Integer | The RSSI of the enOcean device. | GET |
URL Example: https://0.0.0.0/api/rest/v1/protocols/enocean/devices/3906
{
"RSSI": -45,
"deviceType": "0",
"deviceId": "3906"
}
URL: Example: https://0.0.0.0/api/rest/v1/protocols/enocean/devices/3906
<?xml version="1.0" encoding="utf-8"?>
<Device>
<DeviceId>3906</DeviceId>
<DeviceType>0</DeviceType>
<RSSI>-45</RSSI>
</Device>