Moderation Tools
Confused about "Moderation Tools"?
Let us know how we can improve our documentation:
Flag
Copied!Confused about "Flag "?
Let us know how we can improve our documentation:
Any user is allowed to flag a message. This triggers the message.flagged
webhook event and adds the message to the inbox of your Stream Dashboard Chat Moderation view.
Reasons & custom data
Copied!Confused about "Reasons & custom data"?
Let us know how we can improve our documentation:
You can enhance flags by associating them with a specific reason and custom data. It is advisable to utilise a slug or keyword as a designated reason for easy translation or other forms of display customisation.
The custom data can encompass any object, offering supplementary metadata to the flag.
The Query Message Flags endpoint retrieves both reasons and custom data, and the reason can also be utilised for filtering these flags.
Query Message Flags
Copied!Confused about "Query Message Flags"?
Let us know how we can improve our documentation:
If you prefer to build your own in-app moderation dashboard, rather than use the Stream dashboard, then the query message flags endpoint lets you get flagged messages. Similar to other queries in Stream Chat, you can filter the flags using query operators.
Both server-authenticated and user-authenticated clients can use this method. For client-side requests, the user needs moderator or admin permissions. This default behavior is controlled by the ReadMessageFlags
permission and can be customized if needed. Read our permissions documentation to learn more.
name | description | example | operators |
---|---|---|---|
channel_cid | The channel CID of the flagged message. This parameter can only be omitted serverside. | { channel_cid :{$in:["livestream:1","livestream:2"]}} | $eq, $in |
user_id | The ID of the user that sent the message. | {"user_id": "12"} | $eq, $in |
is_reviewed | If the message flag has been reviewed in the dashboard. | true | $eq |
team | The team of the related channel | {"team": "red"} | $eq, $in |
Pagination for message flags can be done using the offset/limit options. Flags are returned in ascending order of creation, starting from the most recent flag.
Mutes
Copied!Confused about "Mutes"?
Let us know how we can improve our documentation:
Any user is allowed to mute another user. Mutes are stored at the user level and returned with the rest of the user information when connectUser
is called. A user will be muted until the user is unmuted or the mute is expired.
name | type | description | default | optional |
---|---|---|---|---|
timeout | number | The timeout in minutes until the mute is expired. | no limit | ✓ |
After muting a user messages will still be delivered via web-socket. Implementing business logic such as hiding messages from muted users or displaying them differently is left to the developer to implement.
Ban
Copied!Confused about "Ban"?
Let us know how we can improve our documentation:
Users can be banned from an app entirely or from a channel. When a user is banned, they will not be allowed to post messages until the ban is removed or expired but will be able to connect to Chat and to channels as before.
Channel watchers cannot be banned.
It is also possible to ban the user's last known IP address to prevent the creation of new "throw-away" accounts. This type of ban is only applicable on the app level. We do not recommend applying an IP ban without a reasonable timeout, however, this is not restricted. The IP address will be unbanned either after reaching a timeout or with explicit user unban.
In most cases, only admins or moderators are allowed to ban other users from a channel.
name | type | description | default | optional |
---|---|---|---|---|
timeout | number | The timeout in minutes until the ban is automatically expired. | no limit | ✓ |
reason | string | The reason that the ban was created. | ✓ | |
ip_ban | boolean | Whether or not to apply IP address ban | false | ✓ |
banned_by_id | string | The ID of the user who is performing the ban. This is required only when using API from the server-side | ✓ |
Query Banned Users
Copied!Confused about "Query Banned Users"?
Let us know how we can improve our documentation:
Banned users can be retrieved in different ways:
Using the dedicated query bans endpoint
User Search: you can add the
banned: true
condition to your search. Please note that this will only return users that were banned at the app level and not the ones that were banned only on channels.
Query Bans Endpoint
Copied!Confused about "Query Bans Endpoint"?
Let us know how we can improve our documentation:
The query bans endpoint allows you to list bans for your application. Similar to other query endpoints, you can filter bans by different fields and control the ordering of results.
Available fields
Copied!Name | Description | Example | Operators |
---|---|---|---|
channel_cid | The channel CID for the ban. When this parameter is not provided, both global and channel bans will be returned. | { channel_cid :{$in:["livestream:1","livestream:2"]}} | $eq, $in |
user_id | The ID of the banned user | { user_id: "evil_user" } | $eq, $in, $neq, $nin |
created_at | The date (RFC339) of the ban creation | { created_at: {$gt: "2020-10-02T15:00:00Z"} } | $eq, $gt, $gte, $lt, $lte |
banned_by_id | The ID of the user that created the ban | { banned_by_id: "42"} | $eq, $in, $neq, $nin |
Pagination for bans can be done in two ways: using offset/limit or using the created_at
field. Bans are returned in ascending order by default so to get the second page you need to request bans with created_at
less than the created_at
of the last ban on the first page. Ordering can be reversed using the sort option.
Shadow Ban
Copied!Confused about "Shadow Ban"?
Let us know how we can improve our documentation:
Instead of a default ban, you can shadow ban users from a channel, set of channels, or an entire App. When a user is shadow banned, they will still be allowed to post messages, but any message sent during the ban will only be visible to the author of the message and invisible to other users of the App.
Shadow banning can delay a persistent bad actor from attempting ban evasion techniques by obfuscating the fact that a ban has occurred for them. Since a shadow ban's effectiveness relies on it not being discovered, shadow bans work best in chats with a high volume of messages and fast velocity where the offending user's messages not receiving engagement appears plausible; think livestreams.
Messages from a shadow banned user will include the shadowed: true
flag on the message object. This flag is only visible to users other than the shadow banned user, so the offender will not be able to recognize that they are shadow banned even if they use developer tools to inspect responses from the API. You will need to implement UI logic for how your application will handle shadowed messages. Having the client hide these messages for everybody other than the user sending them is a common approach.
name | type | description | default | optional |
---|---|---|---|---|
timeout | number | The timeout in minutes until the ban is automatically expired. | no-limit | ✓ |
reason | string | The reason that the ban was created. | - | ✓ |
ip_ban | boolean | Whether or not to apply IP address ban | false | ✓ |
banned_by_id | string | The ID of the user who is performing the ban. This is required only when using API from the server-side | - | ✓ |
Administrators can view shadow banned user status in queryChannels()
, queryMembers()
and queryUsers()
.
Block Lists
Copied!Confused about "Block Lists"?
Let us know how we can improve our documentation:
A list of words you can define to moderate chat messages. A blocklist can be assigned to each channel type to either block or flag messages that contain these words. More information can be found here.
Automated Moderation for Chat
Copied!Confused about "Automated Moderation for Chat"?
Let us know how we can improve our documentation:
Stream AutoMod uses an AI-based classification system to detect various types of bad content. The tool is powered by AI, an is highly configurable for each channel type to assist the manual work of human moderators. You can learn more here.