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