Request

Header

Name Type Value
Authorization String access Token

Body

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

Response

200

{
    "message": "댓글 작성 성공",
    "data": {
        "id": 7,
        "content": "내용",
        "created_at": "24-04-15 21:14",
        "updated_at": "24-04-15 21:14",
        "booth": 2,
        "user": 6
    }
}

401

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

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