curl --location --request POST 'https://api.checkandplace.com/api/v1/reservations' \
--header 'Authorization: <api-key>' \
--header 'EMPLOYEE_TOKEN: <api-key>' \
--header 'STORE_PIN_CODE: <api-key>' \
--header 'SLUG_NAME: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"revenue_center_id": "3b274567-7234-4972-bc6c-e8795c241942",
"customer": "Name, E-mail or Phone number",
"status": "waiting",
"date": [
{
"start_at": "2024-05-06 21:00",
"end_at": "2024-05-06 23:00"
}
],
"order": [
{
"order_by": "created_at",
"order_direction": "desc"
}
],
"pagination": [
{
"page": 1,
"per_page": 50
}
]
}'