Developer Portal
Connector Guides
API ReferenceConsole

R-Zero

RZeroLogo

R-Zero is a smart building platform offering occupancy detection, air filtration, and energy efficiency solutions.

Use Cases

Potential use cases include:

  • Smart HVAC scheduling
  • Space utilization discovery
  • Facility optimization

Configuration

This connector requires the following credentials:

CredentialDescription
Username & PasswordUtilize the username and password provided in your R-Zero account

Mapped Concepts

Connector ConceptMapped Type
WorkPlace, Floorplan, SpaceBuilding, Floor, Space, Occupancy Zone
WorkPointOccupancy Sensing Device
CountersOccupancy Status, Occupancy Count Sensor

Sample Code

The following example shows how to retrieve the time series data for points associated with the Occupancy Sensor in a specific Space.

Request Response
Copy
1
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
      }
    }
  }
}