Actions24
- Chat Actions
- Callback Actions
- File Actions
- Message Actions
Overview
This node interacts with the Telegram API to perform various chat-related operations. Specifically, the 'Get Member' operation retrieves information about a specific member of a Telegram chat using the chat ID and user ID. This node is useful for scenarios where you need to fetch details about a chat member, such as their status or permissions within the chat. Practical examples include managing group memberships, verifying user roles, or automating chat member audits.
Use Case Examples
- Retrieve a member's status in a group chat to check if they are an administrator.
- Fetch user information from a chat to personalize messages or manage permissions.
Properties
| Name | Meaning |
|---|---|
| Chat ID | Unique identifier for the target chat or username of the target channel. Required to specify which chat to query. |
| User ID | Unique identifier of the target user whose membership information is to be retrieved. Required for the 'Get Member' operation. |
Output
JSON
json- The JSON response from Telegram API containing the member's information in the chat.
Dependencies
- Telegram API key credential for authentication
Troubleshooting
- Ensure the Chat ID and User ID are correct and valid; incorrect IDs will cause errors.
- The Telegram API may return errors if the bot does not have permission to access the chat or member information.
- Timeouts or network issues may cause the request to fail; retry or check network connectivity.
Links
- Telegram Bot API - getChatMember - Official Telegram API documentation for the getChatMember method used to retrieve information about a chat member.