Skip to content

리뷰수정

Bohyeon Kim edited this page Oct 12, 2021 · 1 revision

리뷰수정

메소드 경로 짧은 설명
PUT board/review/reviewid 리뷰수정

요청 헤더

Bearer 헤더에 access 토큰 값 넣어야 함

Content-Type: application/json

요청 바디

{
    "content": "커피빈",
    "user": 1,
    "store": 3,
    "tag": "",
    "review_img" : ""
}

응답 바디

성공

{
    "id": 3,
    "content": "커피빈",
    "insrt_dt": "2021-09-08T11:44:28.701457+09:00",
    "updt_dt": "2021-10-12T11:27:02.528262+09:00",
    "user": 1,
    "store": 3,
    "tag": [],
    "review_img": [
        {
            "id": 1,
            "review_img": "https://courageous-bucket.s3.amazonaws.com/media/review_upload_files/3/%EA%B0%84%EC%9E%A5%EC%B9%98%ED%82%A8.jpeg",
            "updt_dt": "2021-09-23T15:44:48.882177+09:00",
            "insrt_dt": "2021-09-23T15:44:48.882177+09:00",
            "usage_fg": "Y",
            "review": 3
        }
    ],
    "nickname": "pyh0502"
}
Clone this wiki locally