curl --location --request POST 'http://localhost:8080/api/v1/reservations/1/apply' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"applicantId": 12,
"assetName": "회의실 A",
"startAt": "2025-01-10T09:00:00Z",
"endAt": "2025-01-10T11:00:00Z",
"description": "프로젝트 킥오프 회의",
"attendantIds": [
23,
24,
31
]
}'{
"reservationId": 1,
"applicantId": 1,
"respondentId": 1,
"assetId": 1,
"startAt": "string",
"endAt": "string",
"actualStartAt": "string",
"actualEndAt": "string",
"status": "PENDING",
"description": "string",
"isApproved": false,
"reason": "string"
}