Create a new channel
Schema.slack.functions.CreateChannelslack#/functions/create_channelteam-devrel-education-running-buddiesproj-remove-all-oxford-commasbroadcast-jesse-promotiontrue if the channel should be private, set to false if the channel should be public.
truefalseYour automations may create channels as part of a workflow using this Slack function.
Consider the channel_name you specify as merely a suggestion. If it's taken, Slack might append characters to it. Or if you provide some kind of characters Slack doesn't use for channel names, they might be munged.
To set the channel managers as part of the newly created channel, specify one or more IDs in an array to manager_ids.
const createChannelStep = ExampleWorkflow.addStep(
Schema.slack.functions.CreateChannel,
{
channel_name: "broadcast-jesse-promotion",
is_private: false,
},
);