Actions10
Overview
This node interacts with Zalo Group functionalities, specifically focusing on managing group members. The operation "Lấy Danh Sách Thành Viên" (Get Group Members) retrieves a list of members from a specified Zalo group. This is useful for scenarios where you need to monitor or process group membership data, such as syncing group members with another system, auditing group participation, or sending targeted messages to group members.
Practical examples:
- Fetching the first 50 members of a Zalo group to display in a dashboard.
- Exporting group member information for analysis or backup.
- Automating notifications or actions based on current group membership.
Properties
| Name | Meaning |
|---|---|
| ID Nhóm | The unique identifier of the Zalo group from which to retrieve members. |
| Giới Hạn | The maximum number of group members to fetch (limit). |
Output
The output JSON contains the following fields:
memberIds: An array of member IDs retrieved from the group, limited by the specified "Giới Hạn".profiles: An object containing profile details of the fetched members.totalMembers: The total number of members returned in this response.limit: The limit value used for fetching members.groupInfo: Metadata and information about the group itself.
This structure allows downstream nodes or workflows to access both the raw member IDs and detailed profile information, along with context about the group.
Dependencies
- Requires an API key credential for authenticating with the Zalo API.
- The node depends on an internal Zalo API client library that handles requests such as fetching group members.
- Proper configuration of the Zalo API credentials within n8n is necessary for successful execution.
Troubleshooting
Common issues:
- Invalid or expired API credentials can cause authentication failures.
- Providing an incorrect or non-existent group ID will result in errors or empty member lists.
- Requesting a very high limit might lead to timeouts or rate limiting by the Zalo API.
Error messages:
- Errors related to authentication usually indicate problems with the API key setup; verify and update credentials.
- If the node throws an error about missing group information, check that the group ID is correct and accessible.
- Network or timeout errors suggest connectivity issues or API rate limits; consider reducing the "Giới Hạn" value.