CheckIns
Create a Check-in
Records a new check-in for a customer at the given site.
post/customers/check-ins
Request body
Example request
{
"customer_id": "000000-000000-000000-000000",
"membership_id": "000000-000000-000000-000000",
"site_id": "000000-000000-000000-000000",
"method_id": "scanned"
}Response
The check-in was 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"
}
}