Seating of a reservation Deprecated

POST /r/reservation/1/checkin

Assign a reservation to a table

application/json

Body Required

Responses

POST /r/reservation/1/checkin
curl \
 -X POST https://api.lsk.lightspeed.app/r/reservation/1/checkin \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"businessLocationId":42,"customerCount":42,"customerInfo":{"contactNumberAsE164":"string","email":"string","firstName":"string","lastName":"string","notes":"string","rating":42.0,"thirdPartyReference":"string","vip":true},"endPointId":"string","notes":[{"note":"string"}],"reservationReference":"string","specialOffer":"string","table":"string"}'
Request example
{
  "businessLocationId": 42,
  "customerCount": 42,
  "customerInfo": {
    "contactNumberAsE164": "string",
    "email": "string",
    "firstName": "string",
    "lastName": "string",
    "notes": "string",
    "rating": 42.0,
    "thirdPartyReference": "string",
    "vip": true
  },
  "endPointId": "string",
  "notes": [
    {
      "note": "string"
    }
  ],
  "reservationReference": "string",
  "specialOffer": "string",
  "table": "string"
}
Response examples (200)
{
  "error": true,
  "errorMessage": "string",
  "responseEntity": {}
}