Community moderation
Admin homeReports, mutes, bans, and message soft-deletes. Community restrictions are community-scoped only — they never affect wallet, deposits, withdrawals, or predictions.
Reports
| Created | Category | Status | Reporter | Target | Message | Actions |
|---|
No reports in this filter.
Restrictions
| Started | Kind | Account | Group | Ends | Active | Action |
|---|
No restrictions recorded.
curl (operator session cookie + CSRF)
# Open reports
curl -b cookies.txt 'https://api.example/api/v1/admin/community/reports?status=OPEN'
# Soft-delete a message (CSRF required)
curl -b cookies.txt -X POST -H 'X-CSRF-Token: <token>' \
-H 'Content-Type: application/json' -d '{"reason":"abuse"}' \
'https://api.example/api/v1/admin/community/messages/<id>/moderate'
# Mute for 24h
curl -b cookies.txt -X POST -H 'X-CSRF-Token: <token>' \
-H 'Content-Type: application/json' \
-d '{"accountId":"<uuid>","kind":"MUTE","durationHours":24}' \
'https://api.example/api/v1/admin/community/restrictions'