The OpenPath Connector provides visibility into access control data for your buildings/floors/spaces.
Some potential use cases include:
Credential | Description |
---|---|
Username | Your OpenPath username |
Password | Your 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.
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 ResponseCopy1 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 } } } } }