/config/bacnet/server/enable

The list of BACnet protocols that are enabled. An empty list indicates that the BACnet server is disabled. The meter is currently restricted to supporting a single protocol at a time, so this array may have at most one element.

Get /config/bacnet/server/enable

SecurityApiKey
Request
query Parameters
max-depth
integer >= 1

Limit output depth of the response. See Max-Depth.

Example: max-depth=2
filter
string

Response filter string. See Filter-Spec.

Example: filter={foo,bar}
Responses
200

Normal response.

401

Unauthorized response.

get/config/bacnet/server/enable
Request samples
Response samples
application/json
{
  • "result": [
    ],
  • "error": "Error message (present if an error occurred)."
}

Replace /config/bacnet/server/enable

SecurityApiKey
Request
Request Body schema: application/json
Array
string (configBacnetServerEnableItem)

The name of an enabled BACnet protocol. Possible values are:

  • ethernet: BACnet over raw Ethernet.

  • bip: BACnet over the UDP/IP.

  • mstp: BACnet over MS/TP (RS-485).

Enum: "ethernet" "bip" "mstp"
Responses
200

Normal response.

401

Unauthorized response.

put/config/bacnet/server/enable
Request samples
application/json
[
  • "ethernet"
]
Response samples
application/json
{
  • "status": "OK",
  • "error": "Error message (present if an error occurred)."
}

Update /config/bacnet/server/enable

SecurityApiKey
Request
Request Body schema: application/json
Array
string (configBacnetServerEnableItem)

The name of an enabled BACnet protocol. Possible values are:

  • ethernet: BACnet over raw Ethernet.

  • bip: BACnet over the UDP/IP.

  • mstp: BACnet over MS/TP (RS-485).

Enum: "ethernet" "bip" "mstp"
Responses
200

Normal response.

401

Unauthorized response.

post/config/bacnet/server/enable
Request samples
application/json
[
  • "ethernet"
]
Response samples
application/json
{
  • "status": "OK",
  • "error": "Error message (present if an error occurred)."
}

Delete /config/bacnet/server/enable

Disable the BACnet server.

SecurityApiKey
Responses
200

Normal response.

401

Unauthorized response.

delete/config/bacnet/server/enable
Request samples
Response samples
application/json
{
  • "status": "OK",
  • "error": "Error message (present if an error occurred)."
}