List Check-ins
Retrieves a list of all check-ins, optionally filtered by customer, site, date range and method.
Query parameters
The customer IDs to filter check-ins by
The site ID to filter check-ins by
Filter check-ins and check-outs that happened on or after the given datetime.
Filter check-ins and check-outs that happened on or before the given datetime.
Filter check-ins that happened on or after the given datetime.
Filter check-ins that happened on or before the given datetime.
Filter check-ins that were created by the given method ID.
Filter check-ins that were created by the given method type.
The page to retrieve results from
The number of results to return per page
Response
The check-ins were successfully retrieved
Example response
{
"data": [
{
"id": "000000-000000-000000-000000",
"customer": {
"id": "000000-000000-000000-000000",
"first_name": "John",
"last_name": "Smith",
"full_name": "John Smith",
"email": "john@example.com"
},
"membership_id": "000000-000000-000000-000000",
"site_id": "000000-000000-000000-000000",
"method": {
"name": "Scanned"
},
"source": "kiosk",
"checked_in_at": "2021-01-01T00:00:00.000Z",
"checked_out_at": "2021-01-01T00:00:00.000Z"
}
],
"meta": {
"from": 1,
"to": 2,
"total": 2,
"current_page": 1,
"last_page": 2,
"per_page": 15,
"path": "http://example.com/api"
},
"links": {
"first": "http://example.com?page=1",
"next": "https://example.com?page=3",
"prev": "https://example.com?page=1",
"last": "https://example.com?page=4"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.