EmberlyEmberly Docs

Reporting Users

Report inappropriate content or behaviour to the Emberly moderation team.

If you encounter content or behaviour that violates Emberly's Terms of Service or Community Guidelines, you can submit a report directly from the platform or via API.


How to Report a User

From any user's public profile:

  1. Open the profile menu (··· or Report button)
  2. Select a category
  3. Write a reason (10–500 characters, required)
  4. Optionally add details (up to 2000 characters)
  5. Submit the report

You can only submit one report per user. If you have new information, add it in the details field.


Report Categories

CategoryDescription
SPAMSpam or unsolicited content
HARASSMENTHarassment or bullying
ABUSEAbusive or threatening behaviour
ILLEGAL_CONTENTContent that may be illegal
COPYRIGHTCopyright or intellectual property violation
IMPERSONATIONImpersonating another person or brand
OTHEROther violations not listed above

What Happens After You Report

Reports are reviewed by Emberly's moderation team. We do not share outcomes of individual reports, but common actions include:

  • Warning the reported user
  • Removing offending content
  • Suspending or banning the account

See Staff: Moderation for how reports are processed internally.


API

Submit a Report

POST /api/reports
Authorization: Bearer YOUR_UPLOAD_TOKEN
Content-Type: application/json
{
  "reportedUserId": "cluser...",
  "category": "SPAM",
  "reason": "This user is posting spam links in their public files.",
  "details": "Optional additional context up to 2000 characters."
}
FieldTypeRequiredDescription
reportedUserIdstringYesThe ID of the user being reported
categorystringYesOne of the categories above
reasonstringYes10–500 characters
detailsstringNoUp to 2000 characters

Response (201):

{
  "success": true,
  "message": "Report submitted successfully"
}

Error cases:

StatusError
400Invalid category, reason too short/long, or reporting yourself
404Reported user not found
409You have already submitted a report against this user

On this page