Reset Key Chain

Reset PIN/SmartKey of a reservation

Reset Reservation's Key Chain

POST [environmentBaseUrl]/v1/reservations/resetKeyChain

This endpoint allows you to reset a reservation's key chain (PIN and SmartKey). Normally you do not need this API as Goki has web/mobile UI for all of the PIN, SmartKey related features, including regenerating them.

Request Body

{
  "data": {
    "reservation": {
      ...ReservationDocument, // Check ReservationDocument page for the sample data
      "pin": "4356567"
    },
    "failures": [
      "pin"
    ]
  }
}

Key Chain

For each reservation, we generate access to their rooms in 2 formats:

  1. A PIN which is emailed to the guest

  2. And Ekey (SmartKey) which they receive in their Goki app

Additionally, some properties have SmartLocks installed on the common area doors (lift, kitchen, driveway) and these are referred to as gatesKeyChain.

Last updated