-
Notifications
You must be signed in to change notification settings - Fork 4
신고하기
Ji Yeon Kim edited this page Jan 11, 2019
·
4 revisions
지연
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | /report/{flag} | 유저 또는 리뷰 또는 댓글 신고하기 |
- flag=0 : 유저 신고
- flag=1 : 리뷰 신고
- flag=2 : 댓글 신고
Content-Type: application/json
Authorization: token
{
"report_relation_id" : "유저 아이디 or 리뷰 인덱스 or 댓글 인덱스를 String으로 보내주세여",
"content" : "신고내요오오오ㅗ오옹"
}
{
"status": 201,
"message": "신고 성공",
"data": null
}
{
"status": 400,
"message": "신고 실패",
"data": null
}
{
"status": 600,
"message": "데이터베이스 에러",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}