Developer Portal
Connector Guides
API ReferenceConsole

Yanzi

YanziLogo

Yanzi provides technology to track workspace usage, including occupancy and indoor air quality data.

Use Cases

Potential use cases include:

  • Finding underutilized spaces in your office
  • Changing your HVAC settings in response to space vacancy
  • Tracking air quality between rooms in your office

Configuration

This connector requires the following credentials:

CredentialDescription
UsernameThe username for your Yanzi Connect account
PasswordThe password for your Yanzi Connect account

Mapped Concepts

Connector ConceptMapped Type
LocationBuilding, Floor, Space, Occupancy_Zone
ChassisSensor_Equipment
SampleCO2LevelSensor, HumiditySensor, SoundPressureLevelSensor, SeaLevelAirPressureSensor, TemperatureSensor, TVOCLevelSensor, MotionSensor

Sample Code

Here's an example showing how to retrieve all the data for a particular Yanzi Comfort sensor by the ID - these sensors include a wide variety of data, including air quality, temperature (either in Kelvin or Celsius) and sound decibels:

Request Response
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  things(filter: {id: {eq: "THG7iRsRb2dsXdvGccSc5ck5Q"}}) {
    name
    exactType
    points {
      id
      name
      exactType
      unit {
        name
        description
      }
      series(latest: true) {
        value {
          float64Value
        }
        timestamp
      }
    }
  }
}