Vutility provides submetering sensors for tracking energy metrics against specific energy users in your building.
Potential use cases include:
This connector requires the following credentials:
Credential | Description |
---|---|
Username | The username registered to your Vutility account |
Password | The password registered to your Vutility account |
Connector Concept | Mapped Type |
---|---|
Place | Building, Floor, Space (Optional) |
Thing | Device |
Point | Temperature_Sensor, Current_Sensor |
The most typical usecase for Vutility is to track the current usage for a particular sensor attached to a device or circuit. Each sensor is a thing, so we'll filter by the specific thing ID to get the relevant point data. View the docs for things for more information on retrieving the thing ID.
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{ things(filter: {id: {eq: "THGR1s9A2jdHtF2bwg1vyccjy"}}) { id name exactType points { id name exactType unit { name } series(latest: true) { timestamp value { float64Value } } } } }