Skip to content
TriggerSlackReal-timeUpdated May 2026

How do I trigger when a new Slack channel is created?

Short answer: Drop the "SlackNew Channel" trigger on your workflow canvas, add filters if you want them, and publish. It fires within seconds of the event in Slack, not on a polling schedule.

Anatomy

What this trigger looks like in a workflow.

Drop it on the canvas. Configure a couple of fields. Publish.

In the builder
Trigger
New Channel
When the matching event happens
when a new slack channel is creatednew channel createdwatch for channel createdon channel createdchannel addedwhen channel creatednew channel
What this trigger returns
for the curious

You don’t need to read this. Tiny Command auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.

{
"raw": {
"type": "event_callback",
"event": {
"type": "channel_created",
"channel": {
"id": "C0123ABC",
"name": "new-channel",
"created": 1712835600,
"creator": "U0123DEF",
"is_channel": true
}
},
"token": "verification_token",
"team_id": "T1234567890",
"event_id": "Ev1234567890",
"api_app_id": "A1234567890",
"event_time": 1712835600
},
"name": "new-channel",
"creator": "U0123DEF",
"channel_id": "C0123ABC"
}
Output shape

Fields available to downstream nodes.

Every field below can be referenced by name in any action or filter that comes after this trigger.

FieldTypeExample
rawobject{ … }
raw.typestring"event_callback"
raw.eventobject{ … }
raw.event.typestring"channel_created"
raw.event.channelobject{ … }
raw.event.channel.idstring"C0123ABC"
raw.event.channel.namestring"new-channel"
raw.event.channel.creatednumber1712835600
raw.event.channel.creatorstring"U0123DEF"
namestring"new-channel"
creatorstring"U0123DEF"
channel_idstring"C0123ABC"
FAQ

Questions about New Channel.

How does the New Channel trigger work in Slack?
Fires when a new Slack channel is created in the workspace. Useful for auto-adding the bot, welcome messages, or governance audit logs.
Is the New Channel trigger real-time?
Yes. New Channel uses webhooks or push subscriptions, not polling. Your workflow fires within seconds of the event happening in Slack.
What data does New Channel return?
The full event payload from Slack. The output shape table on this page lists every field, its type, and an example value so you can map fields into downstream nodes.
Can I filter New Channel so only some events start a workflow?
Yes. Add a Filter node right after the trigger and match on any field, whether that's subject, sender, status, or anything else in the payload. Workflows only continue when the filter passes.
Do I need Slack admin permissions to use New Channel?
For most Slack accounts a standard user can authorize the trigger. Some Slack plans require an admin to enable third-party webhooks. Check Slack's docs if the trigger fails to register.
More triggers

Other Slack triggers.

Build a workflow on this trigger.

One trigger. 45+ downstream actions. Zero glue.