The Mach Energy Connector provides access to electrical, gas and water meter data in order to monitor energy demand and consumption.
Potential use cases include:
Credential | Description |
---|---|
Username | Your iES Mach system username |
Password | Your iES Mach system password |
Here's an example showing how to retrieve the latest kilowatt per hour energy usage from electrical meters monitored by Utilivisor:
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{ things(filter: {type: {eq: "ElectricalMeter"}}) { id name description points { exactType unit { name } series(latest: true) { value { float64Value } timestamp } } } }
The above example retrieves the energy data from the meters, includes the unit so you know the returned value is in kilowatts per hour, and also returns the timestamp the value was saved by the sensor.