Short answer: Drop the "Slack → Member Joined 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": {"team": "T0123GHI","type": "member_joined_channel","user": "U0123DEF","channel": "C0123ABC","inviter": "U0456JKL","channel_type": "C"},"token": "verification_token","team_id": "T1234567890","event_id": "Ev1234567890","api_app_id": "A1234567890","event_time": 1712835600},"user": "U0123DEF","channel": "C0123ABC","inviter": "U0456JKL"}
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.team | string | "T0123GHI" |
| raw.event.type | string | "member_joined_channel" |
| raw.event.user | string | "U0123DEF" |
| raw.event.channel | string | "C0123ABC" |
| raw.event.inviter | string | "U0456JKL" |
| raw.event.channel_type | string | "C" |
| user | string | "U0123DEF" |
| channel | string | "C0123ABC" |
| inviter | string | "U0456JKL" |
One trigger. 45+ downstream actions. Zero glue.