The WellStat Connector provides access to air quality data, such as Co2 levels, particulate matter levels, and humidity.
Potential use cases include:
The authorization for the WellStat Connector utilizes the same username and password as the iES Mach platform, as WellStat is a part of iES Mach.
Credential | Description |
---|---|
Username | Your iES Mach username |
Password | Your iES Mach password |
Here's an example that will retrieve the latest value from all the Co2 Sensors for a particular space, in this case a Lobby. Included is also the type field, so you can see the hierarchy of related types, like Air_Quality_Sensor, that could be used for a broader search:
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{ spaces(filter: {id: {eq: "SPCCa4P3FQYccWCrGHQQoAbC3"}}) { name points(filter: {type: {eq: "CO2_Sensor"}}) { id name type series(latest: true) { timestamp value { float64Value } } } } }