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

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

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

REQUEST

Header

 
PathVariable
Field
Type
Description
비고
courtId
Number
농구장 아이디
startTime
Number
농구장 시작시간
endTime
Number
농구장 종료시간

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 예시
 
 
headers { Authorization: "Bearer ${token}" }
{ "participants": [ { "followId": 3, "userId": 2, "nickname": "hey", "isFollowed": true, "profileImage" : "https://a3.com", "createdAt": "2021-01-01T12:20:10", "updatedAt": "2021-01-01T12:20:10" }, { "followId": null, "userId": 4, "nickname": "florar", "isFollowed": false, "profileImage" : "https://a3.com" "createdAt": "2021-01-01T12:20:10", "updatedAt": "2021-01-01T12:20:10" }, { "followId": null, "userId": 5, "nickname": "jelli", "isFollowed": false, "profileImage" : "https://a3.com" "createdAt": "2021-01-01T12:20:10", "updatedAt": "2021-01-01T12:20:10" } ] }