-
Notifications
You must be signed in to change notification settings - Fork 1
3 4. 게시글 내 댓글 대댓글 목록 조회
Donghoon Lee edited this page Nov 2, 2021
·
2 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | http://ServerAddress:3000//comment/detail/:boardId | 게시글 내 댓글 대댓글 목록 조회 |
변수 | 타입 | 설명 |
---|---|---|
"boardId" | STRING | 게시판 Id |
Success: 댓글 및 대댓글 조회 성공 (200)
[
{
_id,
parentType,
parentId,
userId,
content,
createdAt,
updatedAt,
-v: 0
},
nestedComments: []
...
]
fail: 입력값 미등록시 (400)
{
"요청이 잘못되었습니다. 재검토하고 재요청할 필요가 있습니다."
}