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 \
--compressedParameters
source_idRequired-
Parent source ID for point to write.
point_idRequired-
Point ID for point to write.
valueRequired-
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",
}