R-Zero is a smart building platform offering occupancy detection, air filtration, and energy efficiency solutions.
Potential use cases include:
This connector requires the following credentials:
Credential | Description |
---|---|
Username & Password | Utilize the username and password provided in your R-Zero account |
Connector Concept | Mapped Type |
---|---|
WorkPlace, Floorplan, Space | Building, Floor, Space, Occupancy Zone |
WorkPoint | Occupancy Sensing Device |
Counters | Occupancy Status, Occupancy Count Sensor |
The following example shows how to retrieve the time series data for points associated with the Occupancy Sensor in a specific Space.
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{ spaces(filter: {id: {eq: "SPCWpFpYUWxbkL8iLeIkjD4HA"}}) { id name exactType points { id name exactType valueMap series(latest: true) { value { float64Value } timestamp } } } }