Actions40
- Chat Actions
- Custom Request Actions
- Group Actions
- File Actions
- Login Actions
- Message Actions
- User Actions
- Contact Actions
Overview
This node integrates with the Telegram API via the TelePilot service to perform various Telegram-related operations. Specifically, for the 'User' resource and 'Get User Full Info' operation, it retrieves comprehensive information about a specified Telegram user by their user ID. This node is useful for scenarios where detailed user data is needed, such as in customer support bots, user analytics, or automated Telegram management systems.
Use Case Examples
- Retrieve full profile information of a Telegram user by their user ID to display in a dashboard.
- Fetch detailed user info to verify user identity or permissions before performing actions.
- Use in automation workflows to gather user data for personalized messaging or logging.
Properties
| Name | Meaning |
|---|---|
| User ID | The unique identifier of the Telegram user whose full information is to be retrieved. |
Output
JSON
user_id- The unique identifier of the Telegram user.first_name- The first name of the user.last_name- The last name of the user, if available.username- The Telegram username of the user, if set.phone_number- The phone number associated with the user, if accessible.status- The current status of the user (e.g., online, offline).profile_photo- Information about the user's profile photo, if any.bio- The biography or description text of the user.language_code- The language code set by the user.additional_info- Other detailed user information returned by the Telegram API.
Dependencies
- Requires an API key credential for the TelePilot Telegram API integration.
Troubleshooting
- Ensure the Telegram API credentials are correctly configured and valid.
- If the node throws an 'Unauthorized' error, the Telegram session may have expired or been closed; re-login is required.
- If the user ID is invalid or does not exist, the API call will fail; verify the user ID before execution.
- Network issues or Telegram API downtime can cause request failures; retry or check connectivity.
Links
- TelePilot Login Guide - Instructions on how to log in and authenticate with the TelePilot Telegram API.
- Telegram API users.getFullUser Method - Official Telegram API documentation for retrieving full user information.