curl --location --request GET 'http://localhost:8080/api/v1/reservations/1' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{}'{
"reservationId": 1,
"applicantId": 1,
"respondentId": 1,
"assetId": 1,
"startAt": "string",
"endAt": "string",
"actualStartAt": "string",
"actualEndAt": "string",
"status": "PENDING",
"description": "string",
"isApproved": false,
"reason": "string"
}