Request

Header

Name Type Value
Authorization String access Token

Query Params

comment_pk: int #댓글 아이디

Body

content: text #댓글 내용
{
	"content": "내용"
}

Response

200

{
    "message": "댓글 수정 성공",
    "data": {
        "id": 3,
        "booth": 1,
        "user": 3,
        "content": "뽕",
        "created_at": "2022-09-01 22:26",
        "updated_at": "2022-09-01 22:26"
    }
}

401

로그인 하지 않고 접근하였을 경우

{
    "detail": "자격 인증데이터(authentication credentials)가 제공되지 않았습니다."
}