Skip to content

✔ 리뷰 등록

Junhyeon edited this page Jan 23, 2021 · 7 revisions
메소드 경로 설명
POST /review 리뷰 등록

Request Header

{
    "Content-Type": "multipart/form-data; boundary=<calculated when request is sent>",
    "token":"액세스 토큰 값"
}

Request Body

⚠️주의 mutipart입니다.

key value type
catIndex 고양이 인덱스 값 Int
productIndex 상품 인덱스 값 Int
preference 상품 선호도 값 Int
memo 메모 내용 String
tag1 태그1 내용 String
tag2 태그2 내용 String
tag3 태그3 내용 String
image 이미지 파일 되도록 png

Response

< Success >

{
    "responseMessage": "리뷰 등록 성공",
    "data": 1
}

< Fail >

  • 필요한 데이터가 없을시(400)
{
    "responseMessage": "서버 내부 에러",
    "data": null
}
  • 데이터 누락 (400)
{
    "timestamp": "2020-12-29T02:04:54.539+00:00",
    "status": 400,
    "error": "Bad Request",
    "message": "",
    "path": "/review"
}
  • 서버 내부 에러 (requestBody 개수 안 맞을 때) (500)
{
    "responseMessage": "서버 내부 에러",
    "data": null
}
  • 메소드 에러 (405)
  • 경로 에러 (404)
  • 권한 에러 (수정 삭제는 미리 막고 대부분 토큰 만료)(401)