HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
🏀
[팀14] 슬램 - 우리 주변 농구장 예약
/
🧭
Domain 설계
/
[GET] /api/v1/reservations/{courtId}/{startTime}/{duration}

[GET] /api/v1/reservations/{courtId}/{startTime}/{duration}

✅
예약 상세 조회 (토글버튼)
 
 

REQUEST

Header

headers { Authorization: "Bearer ${token}" }
 
PathVariable
Field
Type
Description
비고
courtId
Number
농구장 아이디
startTime
Number
농구장 시작시간
한국시간 → 절대시간으로 변경 (ISO)
duration
Number
농구장 종료시간
30분 → 0.5 (double)

RESPONSE

Body
Field
Type
Description
비고
participants.[].followId
Number
팔로우한 아이디
isFollowed가 true일때만 보내줌
participants.[].userId
Number
참여자 유저 아이디
participants.[].nickname
String
참여자 유저 닉네임
participants.[].isFollowed
Boolean
팔로우 여부
participants.[].profileImage
String
참여자 프로필 이미지
participants.[].createdAt
String
생성 시간
YYYY-mm-DDThh:MM:ss
participants.[].updatedAt
String
수정 시간
YYYY-mm-DDThh:MM:ss
  • Body 예시
{ "contents": [ { "user": { "id": "2", "nickname": "hey", "profileImage" : "https://a3.com", }, "followId": "3" }, { "user": { "id": "4", "nickname": "florar", "profileImage" : "https://a3.com", }, "followId": null }, { "user": { "id": "5", "nickname": "jelly", "profileImage" : "https://a3.com", } "followId": null } ] }