Developer Portal
Connector Guides
API ReferenceConsole

OpenPath

OpenPathLogo

The OpenPath Connector provides visibility into access control data for your buildings/floors/spaces.

Use Cases

Some potential use cases include:

  • Occupancy management apps, to determine which spaces are consistently over capacity
  • Occupancy capacity alerting - when a space reaches capacity, proactively notify building management or other interested users
  • Tailgating security breach alert applications, based on a combination of OpenPath access data and live occupancy data from other systems in your buildings

Configuration

CredentialDescription
UsernameYour OpenPath username
PasswordYour OpenPath password

The Username and Password credentials can be either an OpenPath admin account or an account an admin creates with the necessary permissions. As long as the credentials can access the OpenPath Control Center, they should work with this Connector as well.

Sample Code

Here's an example showing how to retrieve the last time an access control unit was used for a specific building, such as when a badge is swiped to unlock the front door:

Request Response
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  buildings(filter: {id: {eq: "BLDG46sS8TpQrHsToLCRseoKpk"}}) {
    name
    points(filter: {type: {eq: "AccessActivityStatus"}}) {
      name
      exactType
      series(latest: true) {
        timestamp
        value {
          float64Value
        }
      }
    }
  }
}