Report user profile

Use this endpoint (https://komico.edubrazeal.com/mobile_api/profile_report) to report a user profile


Post parameters

Field Value Remarks
session_id ​Access token ID E.g. e7a4652c3231fc74761...
user_id User ID E.g. 671
reason ​ Report reason ID (This value must be an int number as shown on the right)

For example, if you want to report spam account, then this value should be 1
  • 1 = This user is using this account for spam
  • 2 = This user is pretending to be someone else
  • 3 = This user is posting inappropriate content
  • 4 = This is a fake account
  • 5 = This is a fraudulent account
  • 6 = Other
comment ​Comment to the reviewer `Please review this account. Thank you!`

Success response

{
    "code": 200,
    "message": "Report sent successfully",
    "data": []
}

Error responses

{
    "code": 401,
    "data": [],
    "message": "Unauthorized Access"
}

{
    "code": 400,
    "message": "User id missing or invalid",
    "data": []
}

{
    "code": 400,
    "message": "Report reason id missing or invalid",
    "data": []
}