Telegram CoPilot icon

Telegram CoPilot

Your Personal Telegram CoPilot

Overview

This node integrates with Telegram via the TelePilot API, enabling automation of various Telegram actions. Specifically, for the Chat resource and the Create SuperGroup or Channel operation, it allows users to create a new supergroup chat or channel on Telegram. This is useful for automating community management, broadcasting messages, or setting up discussion groups programmatically.

Typical use cases include:

  • Automatically creating a new Telegram supergroup for event participants.
  • Setting up a broadcast channel for announcements.
  • Creating themed discussion groups as part of a workflow.

Properties

Name Meaning
Title The title/name of the new supergroup or channel to be created.
Description A short description of the chat or channel (0-255 characters).
Is Channel? Boolean flag indicating whether to create a channel (true) or a supergroup (false).

Output

The output is a JSON object representing the newly created chat or channel. It contains details returned by the Telegram API about the created entity, such as its unique identifier, type (supergroup or channel), title, description, and other metadata.

No binary data output is involved in this operation.

Dependencies

  • Requires an active Telegram API authentication credential (an API key and associated login).
  • Depends on the TelePilot Node Connection Manager to handle Telegram client sessions.
  • The node expects that the user is logged in; otherwise, it will prompt for login or throw an error.
  • No additional external services beyond Telegram's API are required.

Troubleshooting

  • Not logged in / Unauthorized errors: The node requires a valid Telegram session. If you see errors about unauthorized access or closed clients, ensure you have completed the login process using the appropriate login operation before creating chats.
  • Session closed or terminated: If the session was closed unexpectedly, re-login is necessary. Follow the guide at https://telepilot.co/login-howto.
  • Input validation: Ensure the Title is provided and non-empty. The Description should not exceed 255 characters.
  • API limits or restrictions: Telegram may impose limits on creating channels or supergroups; if creation fails, check Telegram's API documentation or your account permissions.

Links and References

Discussion