curl --location --request POST '/reservations' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"licenseplate": "10-TST-9",
"startdate": "startdate",
"enddate": "soma end date",
"parkinglot": "1501"
}'{
"status": "Success",
"reservation": {
"id": "(new id)",
"user_id": "(user id)",
"parking_lot_id": "1501",
"vehicle_id": "(vehicle id)",
"start_time": "(same startd date)",
"end_time": "(sam end date)",
"status": "pending",
"created_at": "(creation time with the same format)",
"cost": 5.5
}
}