Get Toggle History
Get Activity for Door
GET
https://app.beamlabs.io/api/oauth/v1/endpoints/toggle-history
Retrieve the toggle history for a single door for a given user.
Query Parameters
end_date
string
Ending date of history (YYYY-MM-DD
)
start_date
string
Starting date of history (YYYY-MM-DD
)
history_type
string
"door"
door_id
string
UUID of Door
Headers
Accept
string
Always set to application/json
Content-Type
string
Always set to application/json
Authorization
string
Set to Bearer <ACCESS_TOKEN>
Accept-Charset
string
Always set to utf-8
Accept-Encoding
string
Always set to gzip
The /toggle-history endpoint is used to retrieve the selected Controller's recent history. You can request the history of an entire Controller (ie. Device
) or a specific Door
. Furthermore, the history can be constrained to a particular time period via start_date
and end_date
.
An example request for a specific door may look like:
where <ACCESS_TOKEN>
is a valid access token.
If requesting the history of an entire device, it might resemble the following:
where <TODAY> is today's data with the format YYYY-MM-DD.
Last updated