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

[GET] /api/v1/reservations/expired/?params

✅
지난 예약 목록 조회

Request

Header

headers { Authorization: "Bearer ${token}" }
 
RequestParameter
Filed
Type
Description
비고
size
Number
요청한 데이터의 개수
lastId
Number
데이터의 마지막 인덱스 값
isFirst
Boolean
첫번째 페이지인지 아닌지

Response

Body
Field
Type
Description
비고
contents[].reservationId
Number
예약 아이디
contents[].courtId
Number
농구장 아이디
contents[].courtName
String
농구장 이름
contents[].startTime
String
예약 시작 시간
YYYY-mm-DDThh:MM:ss
contents[].endTime
String
예약 종료 시간
YYYY-mm-DDThh:MM:ss
contents[].latitude
Number
농구장 위도
contents[].longitude
Number
농구장 경도
contents[].createdAt
String
생성 시간
YYYY-mm-DDThh:MM:ss
contents[].updatedAt
String
수정 시간
YYYY-mm-DDThh:MM:ss
  • Body 예시
{ "contents": [ { "id": "3", "courtId": "5", "latitude": 29.3, "longitude": 127.1, "courtName": "관악구민운동장 농구장", "startTime": "2021-01-01T12:20:10.000Z", "endTime": "2021-01-01T12:20:10.000Z", "createdAt": "2021-01-01T12:20:10.000Z", "updatedAt": "2021-01-01T12:20:10.000Z", "participantCount": 5, }, { "id": "5", "courtId": "12", "latitude": 29.3, "longitude": 127.1, "courtName": "영통구민운동장 농구장", "startTime": "2021-01-01T12:20:10.000Z", "endTime": "2021-01-01T12:20:10.000Z", "createdAt": "2021-01-01T12:20:10.000Z", "updatedAt": "2021-01-01T12:20:10.000Z", "participantCount": 5, } ], "lastId": ${reservatioID} // req : 10개 reseponse 2개면 -> null // }