Skip to content

내가 구매한 모든게시글 조회(페이징)

지훈 edited this page Dec 16, 2021 · 1 revision

Request

query parameter for paging

  • page (1부터 시작)
  • size (default 20)
  • sort (default: createdDate,DESC)

cf. 가능한 sort param

  1. 시간 최신 순 : createdDate,DESC (default)
  2. 좋아요 순 : likeCount,DESC
  3. 가격 높은 순 : price,DESC
  4. 가격 낮은 순 : price,ASC
  5. 조회수 순 : viewCount,DESC

예시)

  1. 시간 최신 순 : ?page=1&size=20&sort=createdDate,DESC
  2. 좋아요 순 : ?page=1&size=20&sort=likeCount,DESC
  3. 가격 높은 순 : ?page=1&size=20&sort=price,DESC
  4. 가격 낮은 순 : ?page=1&size=20&sort=price,ASC
  5. 조회수 순 : ?page=1&size=20&sort=viewCount,DESC
  • page를 위한 parameter를 명시하지 않을 경우 : ?size=20&sort=createdDate,DESC&page=1

Header

  • Content-Type: application/json
  • token

Body

no need

Response

Header

  • Content-Type: application/json

Body

return Articles

예시

statusCode message
200 "Success"
404 "접근 권한이 없습니다."
400 "Request 인자 값의 타입이 올바르지 않습니다."
500 "서버에서 내부적으로 에러가 발생했습니다."
Clone this wiki locally