Slack Integration
Slack Configuration: requires Slack Bot Token and App Token
1
2

3
{
"display_information": {
"name": "App Name",
"description": "App Description",
"background_color": "#6a7aab"
},
"features": {
"bot_user": {
"display_name": "Bot Name",
"always_online": true
}
},
"oauth_config": {
"scopes": {
"bot": [
"users:read",
"reactions:write",
"app_mentions:read",
"channels:history",
"channels:read",
"chat:write",
"files:read",
"files:write",
"groups:history",
"groups:read",
"im:history",
"im:read",
"im:write"
]
},
"pkce_enabled": false
},
"settings": {
"event_subscriptions": {
"bot_events": [
"app_mention",
"message.channels",
"message.groups",
"message.im"
]
},
"interactivity": {
"is_enabled": true
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}4
5
6
7
8


1
2
3
4
5
6
7
8
9
Last updated