/events/list

Fetches event history from the access control systems the integration has permission to. Events that indicates access granted and access denied is currenly supported.

Authentication Type: Integration API Key

If both include_access_granted and include_access_denied fields is omitted or is set to false in the request, this will be eqvivalent to not filtering on a event category at all.

Responses

{
    "least_sync_time": "2020-03-01T00:00:00Z",
    "has_more": false,
    "continuation_key": null,
    "events": 
    [
        {
            "event_time": "2020-03-01T00:00:00Z",
            "sequence_id": 12345,
            "category": "accessgranted",
            "type": 101,
            "system_id": "abc123-001",
            "door_name": "entrance",
            "key_id": "47c73793-ac07-4180-b660-438ca589c0b6",
            "key": 
            {
                "identification": "0001234567890",
                "type": "proximity"
            },
            "person":
            {
                "id": "81bd075c-f97b-4576-96f5-9821c7d80e98",
                "first_name": "first name",
                "last_name": "last_name"
            },
            "subject": null
        }
    ]
}

Event Response Model

Event Model

AccessKey Model

Person Model

Subject Model

Last updated