Build a Slack Integration
Learn how to create a simple slack integration in just a few minutes using Kolla Konnect
Prerequisites
1. Create Your Slack App in the Slack Developer Portal
{
"display_information": {
"name": "Kolla Example App",
"description": "An simple Kolla example app",
"background_color": "#da3a79",
"long_description": "This is an example app manifest from the Kolla tutorial for creating a Slack integration quickly. Kolla manages all your OAuth2 connections to third parties so you can focus on the important parts of your integrations. See https://getkolla.com for more information."
},
"features": {
"bot_user": {
"display_name": "Kolla",
"always_online": true
}
},
"oauth_config": {
"redirect_urls": [
"https://connect.getkolla.com/oauth"
],
"scopes": {
"bot": [
"channels:read",
"chat:write",
"chat:write.public"
]
}
},
"settings": {
"org_deploy_enabled": false,
"socket_mode_enabled": false,
"token_rotation_enabled": true
}
}2. Configure a new Slack connector in your Kolla account
3. Link to a Customer's Slack account (or link to your own account for testing)
4. Write your backend business logic
Next Steps
Last updated