What this workflow does
This workflow creates a new Slack channel automatically. It invites team members, sends a welcome message with an image, and uploads a file from a URL. It saves time and avoids mistakes from doing these steps by hand.
The workflow helps teams start projects faster by setting up Slack communication smoothly.
Who should use this workflow
This workflow suits team leads or managers who start many projects. It helps anyone who needs to set up Slack channels quickly with invites and files.
No coding skills are needed if you have basic n8n knowledge and Slack bot tokens.
Tools and services used
- Slack API: To create channels, invite users, send messages, and upload files.
- n8n nodes: Slack node for Slack actions, Manual Trigger node to start workflow, HTTP Request node to download files.
How the workflow works
Inputs
- Manual start from the user.
- Slack Bot Access Token with correct permissions.
- The list of Slack User IDs to invite.
- URLs for images and files to upload.
Processing steps
- Create a new Slack channel using the Slack node.
- Invite the chosen users to this new channel.
- Post a welcome message with an image attachment.
- Download a file from a given URL via the HTTP Request node.
- Upload that downloaded file to the new Slack channel.
Output
A new Slack channel ready with teammates added, a greeting message sent, and important files uploaded.
Beginner step-by-step: How to use this workflow in n8n
1. Import the workflow
- Download the workflow file using the Download button on this page.
- In the n8n Editor, click on the main menu and choose “Import from File”.
- Select the downloaded file to load the workflow.
2. Configure credentials and IDs
- Open the Slack nodes, and add the Slack Bot Access Token in the Credentials section.
- Update any user IDs in the Invite Users node with your team’s actual Slack User IDs.
- Check the channel name in the Create Channel node; you can change it if needed.
- If necessary, update the file URL in the HTTP Request node.
3. Test the workflow
- Click the manual trigger node’s Execute button.
- Observe if the channel is created, users invited, welcome message posted, and file uploaded.
4. Activate the workflow for production
- Turn on the workflow by toggling the Active switch in n8n.
- Start running the workflow manually or set a proper trigger as needed.
- Monitor execution logs for any problems.
If running self-host n8n, see this resource to keep your workflow available.
How to customize the workflow
- Change the channel name using expressions to create project-specific names.
- Add multiple User IDs separated by commas in the invite step to add teams.
- Edit the welcome message text or image URL to make it personal.
- Replace the file URL in the HTTP Request node with other files like PDFs or logos.
Common issues and fixes
Slack API error: channel_not_found
This happens when the workflow uses the wrong channel ID or the Slack bot lacks permission.
Make sure the channel ID is taken dynamically using
{{$node["Slack"].json["id"]}}and check bot permissions.
File upload failed
File may not be passed as binary, or file size is too big.
Set HTTP Request node’s response format to “File” and enable binary data on the Slack file upload node.
Summary of results and benefits
✓ The workflow saves time by automating Slack channel creation and setup.
✓ It lowers errors by inviting the right users and posting consistent messages.
✓ The process runs with less fuss; file uploads work directly from URLs.
→ You get a ready Slack channel with team members, greeting, and files all set in seconds.
