Actions24
- Chat Actions
- Callback Actions
- File Actions
- Message Actions
Overview
This node interacts with the Telegram API to perform various chat-related operations, specifically including the ability to get information about a chat member. It is useful for scenarios where you need to retrieve details about a specific user within a Telegram chat, such as their status or role. For example, it can be used in automation workflows to verify user membership or permissions in a group chat.
Use Case Examples
- Retrieve details of a specific member in a Telegram chat by providing the chat ID and user ID.
- Use the node to get up-to-date information about a chat member for moderation or notification purposes.
Properties
| Name | Meaning |
|---|---|
| Chat ID | Unique identifier for the target chat or username. Required to specify which chat to query. |
| User ID | Unique identifier of the target user. Required to specify which member's information to retrieve. |
Output
JSON
json- The JSON response from Telegram API containing the member information of the specified user in the chat.
Dependencies
- Telegram API with an API key credential
Troubleshooting
- Ensure the Chat ID and User ID are correctly provided and valid; otherwise, the API call to get the chat member will fail.
- If the node throws an error about missing parameters, verify that both Chat ID and User ID are set and not empty.
- Check that the Telegram API credentials are correctly configured and have the necessary permissions to access chat member information.
Links
- Telegram Bot API - getChatMember - Official Telegram API documentation for the getChatMember method used to retrieve information about a chat member.