Short answer: Drop the "Slack → New 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.
Drop it on the canvas. Configure a couple of fields. Publish.
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"}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| raw | object | { … } |
| raw.type | string | "event_callback" |
| raw.event | object | { … } |
| raw.event.type | string | "channel_created" |
| raw.event.channel | object | { … } |
| raw.event.channel.id | string | "C0123ABC" |
| raw.event.channel.name | string | "new-channel" |
| raw.event.channel.created | number | 1712835600 |
| raw.event.channel.creator | string | "U0123DEF" |
| name | string | "new-channel" |
| creator | string | "U0123DEF" |
| channel_id | string | "C0123ABC" |
One trigger. 45+ downstream actions. Zero glue.