cardcomments
카드 댓글관리
댓글 생성
POST
http://localhost:8080/api/cards/{card_id}/comments
Path Parameters
Name
Type
Description
card_id*
Long
카드 id
Cookies
Name
Type
Description
Authorization*
String
JWT 토큰값
Request Body
Name
Type
Description
content*
String
댓글 내용
댓글 수정
PUT
http://localhost:8080/api/cards/comments/{comment_id}
Path Parameters
Name
Type
Description
comment_id*
Long
댓글 id
Cookies
Name
Type
Description
Authorization*
String
JWT 토큰값
Request Body
Name
Type
Description
content
String
댓글 내용
댓글 삭제
DELETE
http://localhost:8080/api/cards/comments/{comment_id}
Path Parameters
Name
Type
Description
comment_id*
Long
댓글 id
Cookies
Name
Type
Description
Authorization*
String
JWT 토큰값
Last updated