Trigger Communications

Triggers when a new channel is created in your Slack workspace. Useful for enforcing naming conventions, auto-joining channels, or notifying admins about new channels.

At a Glance

FieldValue
Trigger IDslack-new-channel-created
CategoryCommunications
Tagsslack, communication, notification, create

Trigger Configuration

This trigger does not require configuration fields.

Trigger Result

FieldTypeRequiredDescription
triggeredAtstringYesTimestamp when the event was received (UTC, RFC3339 format)
eventTypestringNoSlack event type (e.g. channel_created)
channelobjectNoNew channel information including id, name, creator, and created timestamp

Workflow Root Example

json
{ "nodes": { "root": { "type": "slack-new-channel-created", "payload": {}, "children": [ "log_event" ] }, "log_event": { "type": "log", "payload": { "message": "Triggered at {{$trigger.triggeredAt}}" }, "children": [] } }}

Downstream nodes can use {{$trigger.triggeredAt}} and any result fields listed above. Event triggers usually expose the raw source payload under a field such as event, body, trade, or raw.

Ask a question... ⌘I