Submits a report about a user to moderators for content violation or behaviour review.
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>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Category of the user report
harassment, hate_speech, spam_account, impersonation, underage_user, inappropriate_profile, other Additional context or details about the report
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>"
}