curl --location --request PATCH '/api/v1/tickets//rental-due-date' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"requestedDueDate": "2026-06-20T18:00:00"
}'{
"status": 200,
"errorCode": null,
"message": "자산 반납 예정일 변경에 성공했습니다.",
"data": {
"ticketId": 5,
"assetId": 1,
"previousDueDate": "2026-06-10T18:00:00",
"changedDueDate": "2026-06-20T18:00:00",
"updatedAt": "2026-06-01T10:00:00"
}
}