Community management doesn’t happen in a vacuum. Your team is already collaborating in Slack or Discord, and constantly switching between platforms can be exhausting. That’s why we’ve built native integrations that bring forum activity directly to your team chat.
Get instant notifications in your team channels when important events occur in your forum. No need to constantly check the dashboard or refresh the page.
When a user posts a question or reports an issue, your team sees it immediately in Slack or Discord. This means faster response times and happier community members.
Discuss moderation decisions, coordinate responses, and share insights with your team in the same place you’re already working.
Configure exactly which events trigger notifications, so your team only sees what matters. Filter by tags, keywords, or event types.
Navigate to Integrations
Authorize with Slack
Configure Notifications
Test the Integration
Slack notifications include rich formatting with all the context your team needs:
🆕 New Thread in #support
"Payment processing error"
by @john_doe
I'm getting an error when trying to process payments...
[View Thread] [Reply] [Mark as Resolved]Create sophisticated notification rules using our API:
// Only notify for high-priority threads
{
"type": "SLACK",
"name": "High Priority Alerts",
"config": {
"webhookUrl": "https://hooks.slack.com/...",
"channel": "#urgent",
"events": ["thread.created"],
"filters": {
"tags": ["urgent", "bug"],
"keywords": ["critical", "down", "broken"]
}
}
}Interact with forum threads directly from Slack using slash commands:
/forum reply [thread-id] [message] - Reply to a thread/forum close [thread-id] - Close a thread/forum assign [thread-id] [@user] - Assign a thread to a team memberWhen a post is reported, moderators receive an interactive message:
⚠️ Content Reported
Post by @user123 in "General Discussion"
Reason: Spam
Reported by: @moderator_jane
[View Post] [Delete] [Ignore] [Ban User]The Discord integration follows a similar process:
Navigate to Integrations
Create a Webhook in Discord
Configure in Foru.ms
Discord notifications use embeds for a clean, organized look:
┌─────────────────────────────────────┐
│ 🆕 New Thread │
│ │
│ Payment processing error │
│ by john_doe in #support │
│ │
│ I'm getting an error when trying... │
│ │
│ 🏷️ Tags: support, payments │
│ 👁️ View Thread │
└─────────────────────────────────────┘Install the Foru.ms Discord bot for interactive features:
!forum search [query] - Search the forum!forum stats - View forum statistics!forum recent - Show recent threads!forum subscribe [tag] - Subscribe to tag notificationsScenario: Your support team uses Slack and needs to respond quickly to customer questions.
Solution:
Result: Faster response times, better team coordination, happier customers.
Scenario: Your moderation team is distributed across time zones and uses Discord.
Solution:
Result: Consistent moderation, better coverage, reduced response time.
Scenario: Your product team wants to stay informed about feature requests and bug reports.
Solution:
Result: Better product decisions, closer connection to users, streamlined workflow.
Scenario: You want to celebrate community milestones and encourage participation.
Solution:
Result: More engaged community, better retention, positive atmosphere.
Don’t spam your general channel with every forum notification. Create dedicated channels:
#forum-support - Customer support threads#forum-moderation - Moderation alerts (private)#forum-feedback - Feature requests and bug reports#forum-announcements - Important threads onlyStart with conservative filters and expand as needed:
// Good: Specific, actionable notifications
{
"events": ["thread.created"],
"filters": {
"tags": ["urgent", "support"],
"minUpvotes": 5
}
}
// Bad: Too noisy, will overwhelm the channel
{
"events": ["thread.created", "post.created", "post.updated"],
"filters": {} // No filters = everything
}Respect your team’s time by muting notifications during off-hours:
{
"quietHours": {
"enabled": true,
"timezone": "America/New_York",
"start": "22:00",
"end": "08:00"
}
}Regularly check that your integrations are working:
Make sure everyone knows how to use the integration:
Slack and Discord integrations are available on:
Ready to connect your forum to Slack or Discord?
Have questions? Contact our support team or join our community.
Pro Tip: Combine Slack/Discord integration with webhooks for ultimate flexibility. Use webhooks to send notifications to multiple platforms, trigger custom workflows, or integrate with tools that don’t have native integrations.