Seating of a reservation

POST /r/2/reservations

Assign a reservation to a table

application/json

Body Required

POST /r/2/reservations
curl \
 -X POST https://api.lsk.lightspeed.app/r/2/reservations \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"business_location_id":45454565682155,"customer":{"email":"[email protected]","first_name":"Jane","last_name":"Johnson","phone":"+16175551212","third_party_reference":"847e4c54-52656c-9621-4454021454"},"end_point_id":"1","notes":["string"],"reservation_reference":"847e4c54-2512-11ec-9621-0242ac130002","seats":2,"table":"1"}'
Request example
{
  "business_location_id": 45454565682155,
  "customer": {
    "email": "[email protected]",
    "first_name": "Jane",
    "last_name": "Johnson",
    "phone": "+16175551212",
    "third_party_reference": "847e4c54-52656c-9621-4454021454"
  },
  "end_point_id": "1",
  "notes": [
    "string"
  ],
  "reservation_reference": "847e4c54-2512-11ec-9621-0242ac130002",
  "seats": 2,
  "table": "1"
}