Community moderation

Admin home

Reports, mutes, bans, and message soft-deletes. Community restrictions are community-scoped only — they never affect wallet, deposits, withdrawals, or predictions.

Open in view: 0Active restrictions: 0

Reports

CreatedCategoryStatusReporterTargetMessageActions

No reports in this filter.

Restrictions

StartedKindAccountGroupEndsActiveAction

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'