Restaurant Reservation & Waitlist APISeatSmartAPI for booking tables and managing waitlists at a single location.Jordan LeeProductAll endpoints must be served over HTTPS.Security policyGuest books a table for a given time and party size.Guest cancels an existing reservation.The API SHALL allow creating a reservation with time and party size.Requested time is within hours and capacity allowsClient POSTs /reservationsReturn 201 with reservationId and status=confirmed.The API SHALL let a guest cancel an existing reservation.A confirmed reservation existsDELETE /reservations/{id}Status becomes canceled and a 200 response is returned.p95 response time for reservation create SHALL be ≤ 300ms under normal load.All API traffic SHALL enforce HTTPS (TLS 1.2+).Create a reservation.partySize, time, contact inforeservationId, statusCancel a reservation.canceled status404 if not foundPOST /reservations with valid body201 created with id and status=confirmed