Telegram CoPilot icon

Telegram CoPilot

Your Personal Telegram CoPilot

Overview

The Get Supergroup Full Info operation for the Group resource in the TelePilot n8n node retrieves comprehensive information about a specific Telegram supergroup. This is useful when you need detailed metadata and settings of a supergroup, such as its description, member count, permissions, and other administrative details.

Common scenarios:

  • Automating group management tasks by fetching up-to-date group info.
  • Integrating Telegram group data into dashboards or reporting tools.
  • Triggering workflows based on changes or properties of a supergroup.

Example use case:
You want to periodically monitor the status and membership of a Telegram supergroup and log this information to a database or send alerts if certain thresholds are met.


Properties

Display Name Type Description
Supergroup ID String Identifier of the Supergroup
  • Supergroup ID: The unique identifier for the Telegram supergroup whose full information you wish to retrieve.

Output

The output will be a JSON object containing all available details about the specified supergroup. While the exact structure depends on the Telegram API response, it typically includes fields such as:

{
  "id": 123456789,
  "type": "supergroup",
  "title": "My Supergroup",
  "username": "mygroup",
  "description": "This is a sample supergroup.",
  "member_count": 150,
  "is_channel": false,
  "permissions": { ... },
  "invite_link": "https://t.me/joinchat/AAAAAE...",
  // ...other Telegram supergroup fields
}
  • All fields returned by Telegram's getSupergroupFullInfo method will be included in the output.

Dependencies

  • Telegram Account Credentials: You must configure valid Telegram API credentials (apiId, apiHash, and phoneNumber) in n8n under the credential type telePilotApi.
  • External Service: Requires access to the Telegram API via the TelePilot integration.
  • n8n Configuration: No special environment variables are required beyond standard credential setup.

Troubleshooting

Common issues:

  • Invalid Supergroup ID: If the provided Supergroup ID is incorrect or does not exist, the node may return an error or an empty result.
  • Not Logged In / Session Expired: If your Telegram session has expired or was closed, you may see errors like:
    • "Session was closed or terminated. Please login again: https://telepilot.co/login-howto"
    • "Please login: https://telepilot.co/login-howto"
    • Resolution: Re-authenticate using the login operation as described in the documentation.
  • Unauthorized: If your credentials are invalid or revoked, you will receive an "Unauthorized" error. Update your credentials and try again.

Links and References


Discussion