view Boards List

retrieve list of the board

GET /boards

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

[
    {
      "boardId": 1,
      "boardName": "벗들의 벼룩",
      "masterId": 1,
      "description": "벗들의 중고거래 모임"
    },
    {
      "boardId": 2,
      "boardName": "힘찬 컴퓨터",
      "masterId": 2,
      "description": "컴공댕이 모여라"
    }
]

// 'createdDate'와 'modifiedDate'는 서버에서 자동으로 관리되며 요청에 포함되지 않습니다.

피드백 받은 내용

  • 생성일, 수정일은 BaseTimeEntity로 관리할 예정이라 request부분에 없는 것이라면 이부분 명시해주셨으면 좋았을 것 같습니다!

  • 200 Response에 createdAt, updatedAt, master을 추가해주면 좋을 것 같습니다

Last updated