Install ConnectHub in Slack
Click "Add to Slack" above. You will be redirected to the Slack App Directory. Sign in with your workspace credentials and authorize the required permissions.
Sync your ConnectHub communities with Slack. Receive real-time notifications, auto-post content to channels, and manage moderation directly from Slack.
Click "Add to Slack" above. You will be redirected to the Slack App Directory. Sign in with your workspace credentials and authorize the required permissions.
After installation, Slack will provide an Integration Token. Copy this token and paste it into your ConnectHub dashboard under Settings > Integrations > Slack.
# Example token format
xoxb-1234567890-abcdef1234567890abcdef12
Select which ConnectHub communities map to which Slack channels. Choose the events you want to trigger notifications (e.g., New Post, Member Joined, Live Stream Start).
For custom integrations, ConnectHub sends JSON payloads to your Slack Incoming Webhook URL. Below is a sample payload for a NewPost event.
{
"event_id": "evt_9x8c7v6b5n4m",
"type": "new_post",
"timestamp": "2025-10-24T10:30:00Z",
"data": {
"author": {
"id": "user_123",
"username": "@sarah_design"
},
"content": "Check out my new artwork!",
"community_id": "comm_art_lovers",
"media_urls": [
"https://cdn.connecthub.app/img/123.jpg"
]
}
}
| Event Type | Description | Type |
|---|---|---|
| new_post | Triggered when a new post is published. | Real-time |
| new_comment | Triggered on post comments. | Real-time |
| member_joined | User joins a community. | Basic |
| livestream_start | Creator goes live. | Real-time |
| daily_digest | Summary of top posts (scheduled). | Scheduled |