-
Notifications
You must be signed in to change notification settings - Fork 1
✔리뷰 등록 개수 제한
최정균 edited this page Jul 13, 2020
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /review/limit | 리뷰등록제한 |
{
"Content-Type": "application/json"
}
ㅤ
{
"profileIdx" : 2,
"foodIdx" : 1
}
- profileIdx : 프로필인덱스,
- foodIdx : 캣푸드 인덱스
{
"status": 200,
"success": true,
"message": "리뷰를 등록할 수 있습니다",
"data": {
"PossibleAddReview": true
}
}
{
"status": 200,
"success": true,
"message": "리뷰를 등록할 수 없습니다",
"data": {
"unPossibleAddReview": false
}
}
``` ㅤ