Check-In

JRNI has support for a status to be stored against an appointment that can be used to track changes as your staff interact with the customer. The available statuses are configurable but by default they are:

  • Checked in
  • Being seen
  • Completed
  • No show

If you want to indicate that a customer has arrived you can update the status as follows:

Update Booking API

Endpoint:

https://{host}/api/v3/admin/{company_id}/bookings/{booking_id}

Request:

curl https://example.jrni.com/api/v3/admin/1/bookings/1 -H App-Id:1234 -X PUT \
  -d '{"current_multi_status": "checked_in"}'

Response:

{
  datetime: "2019-10-11T09:00",
  service_id: 1,
  company_id: 1,
  current_multi_status: "checked_in"
}