Create Channel
Creates a new Telegram channel with the specified title and optional description and username.
Common Properties
- Name - The custom name of the node.
- Color - The custom color of the node.
- Delay Before (sec) - Waits in seconds before executing the node.
- Delay After (sec) - Waits in seconds after executing node.
- Continue On Error - Automation will continue regardless of any error. The default value is false.
info
If the ContinueOnError property is true, no error is caught when the project is executed, even if a Catch node is used.
Inputs
- Client Id - The unique identifier of the Telegram client to use for this operation.
- Title - The title of the channel to create.
- About - Optional description or about text for the channel.
- Channel Username - Optional username for the channel. Assigning a username will make the channel public.
Output
- Channel - An object containing the channel's ID and access hash.
How It Works
The Create Channel node creates a new Telegram channel. When executed, the node:
- Validates the provided inputs (Client Id and Title)
- Creates a private channel with the specified title and optional description
- Optionally assigns a username to make the channel public
- Returns the channel's ID and access hash as output
Requirements
- A valid Telegram client session with appropriate permissions
- Valid title for the channel
- Client Id must match an existing Telegram client session
Error Handling
The node will return specific errors in the following cases:
- Empty or invalid Client Id
- Empty or invalid Title
Usage Notes
- The channel will initially be created as private
- Adding a username will make the channel public and discoverable
- The output contains the channel's ID and access hash which can be used in other Telegram operations
- The Client Id must correspond to an active Telegram client session