Skip to content

댓글 작성하기

jongchan lee edited this page Jul 8, 2019 · 3 revisions

댓글 작성하기

이종찬

Method URL Description
POST /goods/review/comment 댓글 작성하기
  • 요청 헤더

    Content-Type : application/json
    
    authorization
  • 요청 바디

    {
        reviewIdx : "리뷰 아이디",
        contents : "댓글 내용"
        userIdxForAlarm : "알람 받을 유저 idx"(리뷰 작성자 또는 댓글 작성자)
        recommentFlag : "대댓글 여부"(0: 댓글, 1:대댓글)
    }
  • 응답 성공

    // 201
    {
        "message": "Success",
        "data": []
    }
  • 응답 실패

    // status : 401 jwt 안넣어주었을때
    {
        "message": "jwt must be provided"
    }
    // status : 401
    {
        "message": "jwt expired"
    }
Clone this wiki locally