view Comment List

view Comment list of selected post

GET /posts/{postId}/comments

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

[
  {
    "commentId": 1,
    "text": "우왕 내용이당",
    "commentorId": 1,
    "createdAt": 2023-07-26 01:06:55.323,
    "updatedAt": 2023-07-26 01:06:55.323
  },
  {
    "commentId": 2,
    "text": "우하하하하",
    "commentorId": 2,
    "createdAt": 2023-07-26 01:06:55.323,
    "updatedAt": 2023-07-26 01:06:55.323
  }
]

Last updated