Skip to main content
POST
/
reports
/
user
Report user
curl --request POST \
  --url https://api.fluxer.app/v1/reports/user \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "<string>",
  "category": "harassment",
  "additional_info": "<string>",
  "guild_id": "<string>"
}
'
{
  "report_id": "<string>",
  "status": "<string>",
  "reported_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Body

application/json
user_id
string<snowflake>
required
category
enum<string>
required

Category of the user report

Available options:
harassment,
hate_speech,
spam_account,
impersonation,
underage_user,
inappropriate_profile,
other
additional_info
string

Additional context or details about the report

guild_id
string<snowflake>

Response

Success

report_id
string
required

The unique identifier for this report

status
string
required

Current status of the report (pending, reviewed, resolved)

reported_at
string
required

ISO 8601 timestamp when the report was submitted