GET /protocols/bacnet/communication/network/ip-ports/{id}/foreign-devices/{foreignDeviceId}/
This resource shows the details of a specific foreign device.
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.
The port's instance.
The id of the foreign device in the list.
Object Name: ForeignDevice
Property Name | Type | Description | Method |
---|---|---|---|
Ip | String | The IP address of a controller (foreign device) located on another subnetwork. | GET |
Port | String | The port number for the BACnet service of the controller located on the other subnetwork. | GET |
TimeToLive | Integer | This is the delay after which the foreign device is forgotten. (Time To Live) | GET |
Id | Integer | This is the foreign device's Id. | GET |
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet/communication/network/ip-ports/111/foreign-devices/1
{
"id": 1,
"ip": "192.168.2.3",
"port": 47808,
"timeToLive": 30
}
URL Example: https://0.0.0.0/api/rest/v1/protocols/bacnet/communication/network/ip-ports/111/foreign-devices/1
<?xml version="1.0" encoding="utf-8"?>
<ForeignDevice>
<Id>1</Id>
<Ip>192.168.2.3</Ip>
<Port>47808</Port>
<TimeToLive>30</TimeToLive>
</ForeignDevice>
Eclypse REST API Document Revision 10.2