Write
Write a point value on a given source.
POST /v1/write
curl https://api.novant.io/v1/write \
-u ak_sample_123: \
-d source_id=s.1 \
-d point_id=s.1.3 \
-d value=25.0 \
--compressed
Parameters
source_id
Required-
Parent source ID for point to write.
point_id
Required-
Point ID for point to write.
value
Required-
The value to write for point as a floating point number or
"null"
string to clear a priority hold. level
-
The priority level for Bacnet sources. If not specified, it will default to
16
.
Returns
Returns with a status value of "ok"
.
{
"status": "ok",
"source_id": "s.1",
"point_id": "s.1.3",
"level": null,
"value": "25.0",
}