Reservation
id
long?
Reservation ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
created
timestamp?
Reservation created date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
endDate
timestamp
End date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
flags
integer
Reservation flags
📶 BITS
note
string?
Reservation noteseats
short
Number of table seats - minimum value is 1, maximum value must be less or equal to the number of seats in the Table entity (Table.seats
).startDate
timestamp
Start date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
status
enum
Reservation statusversionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
// representation like string
NEW, CONFIRMED, CANCELLED
{
"_branchId": <long>,
"_cloudId": <integer>,
"_customerId": <long>,
"_employeeId": <long>,
"_tableId": <long>,
"created": <timestamp>,
"endDate": <timestamp>,
"flags": <integer>,
"id": <long>,
"note": <string>,
"seats": <short>,
"startDate": <timestamp>,
"status": <enum>,
"versionDate": <timestamp>
}
get
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations
Get reservations
get
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations/:reservationId
Get reservation
post
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations
Create reservations
put
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations
Replace or create reservations
put
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations/:reservationId
Replace or create reservation
patch
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations/:reservationId
Partial update of reservation
delete
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservation/:reservationId
Delete reservation
options
https://api.dotykacka.cz
/v2/clouds/:cloudId/tables
Options reservations
options
https://api.dotykacka.cz
/v2/clouds/:cloudId/reservations/:reservationId
Options reservation
Last modified 1yr ago