v2 질문자 리뷰 작성 - Willson-2019/Willson-Server GitHub Wiki
URL
[POST] ~/api/v1/asker/chat/review
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | match_idx | 매치 인덱스 : Int[] |
body | content | 내용 : String |
body | rating | 평점 : Float |
body | image_idx | 이미지 인덱스 : Int |
body | keyword_idx | 키워드 인덱스 : Int[] |
- keyword_idx 추가
- willsoner_idx 삭제
- title 삭제
요청예시
body
{
"match_idx": 2006,
"content": "버전투리뷰",
"rating": 4.5,
"image_idx": 7,
"keywords": [1,2,3]
}
응답예시
성공
{
"code": "success",
"message": "success",
"data": {
"created_at": 1609645346317,
"updated_at": 1609645346317,
"title": null,
"idx": 765,
"match_idx": 2006,
"content": "버전투리뷰",
"rating": 4.5,
"image_idx": 7
}
}
이미 리뷰가 작성 되었을 경우
{
"code": "review_already_exists",
"message": "Review already exist."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우, 윌스너가 삭제된 경우
{
"code": "not_found",
"message": "Result not found"
}