Integrations HTTP and REST
HTTP and REST
Verified liveThe catch-all, for energy meters, environmental sensors, OEM controllers, and the REST side of a gateway that speaks something proprietary underneath.
Verified against Real HTTP endpoints
One request serves every tag on the device. Browse walks the document and reports every scalar with the path that reaches it.
Addressing
| Address | Means |
|---|---|
power.kw | Nested fields. |
readings[0].value | Array indexing. |
zones[name=Zone1].temp | Select an array element by a field value. |
$.data.temperature | A leading $. is accepted. |
The trap
These APIs love returning an unordered array of name and value objects, and indexing by position is a bug waiting for a firmware update. Select by field value instead.