Developer Portal
Connector Guides
API ReferenceConsole

Verkada

VerkadaLogoSmall

Verkada provides cloud-based security solutions, including surveillance cameras, access control systems, environmental sensors, and alarms. The Mapped Verkada connector assists in connecting your Verkada environmental sensor devices to your building's graph.

Use Cases

Potential use cases include:

  • Tracking temperature across your building to identify troublesome areas
  • Monitoring humidity levels to ensure a safe working environment
  • Triggering HVAC schedules based on room comfort levels

Configuration

This connector requires the following credentials:

CredentialDescription
API KeyThe API Key generated from Verkada

Mapping Requirements

Verkada does not provide an API for retrieving devices. Before mapping this connector, you will need to retrieve your sensor's IDs from the URL on the page for the sensor in Verkada Command.

Example of a sensor ID: https://command.verkada.com/sensors/c56bfc3d-19e7-416d-8abd-dff69a213dd3

Mapped Concepts

Connector ConceptMapped Type
SensorSensor_Equipment
Sensor DataTemperature_Sensor, Humidity_Sensor

Sample Code

Here's an example that retrieves the point data for a specific sensor inside a specific building, which in this case is a Humidity Sensor and a Temperature Sensor:

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