Skip to main content
POST
/
reports
/
message
Report message
curl --request POST \
  --url https://api.fluxer.app/v1/reports/message \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channel_id": "<string>",
  "message_id": "<string>",
  "category": "harassment",
  "additional_info": "<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
channel_id
string<snowflake>
required
message_id
string<snowflake>
required
category
enum<string>
required

Category of the message report

Available options:
harassment,
hate_speech,
violent_content,
spam,
nsfw_violation,
illegal_activity,
doxxing,
self_harm,
child_safety,
malicious_links,
impersonation,
other
additional_info
string

Additional context or details about the report

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