Actions9
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 triggering workflows based on group composition.
Practical examples include:
- Automatically fetching and listing all members of a marketing group to send targeted messages.
- Auditing group membership changes by periodically retrieving member lists.
- Integrating group member data into CRM or database systems for further analysis.
Properties
| Name | Meaning |
|---|---|
| ID Nhóm | The unique identifier (ID) of the Zalo group from which to retrieve members. |
| Giới Hạn | The maximum number of group members to fetch in one execution (limit on the number). |
Output
The output JSON contains information about the group members retrieved. Specifically, it includes:
members: An array of member objects representing the group members.admins: An array listing the administrators of the group.currentMems: Current members in the group.updateMems: Members who have been updated recently.totalMember: The total count of members in the group.
Each item in the output corresponds to an input item processed, paired with its index.
No binary data output is indicated in this operation.
Dependencies
- Requires an API authentication token credential to access Zalo's group services.
- Uses a Zalo API client instantiated with credentials including cookie, device IMEI, and user agent strings.
- The node depends on external libraries bundled within the source code for making API calls to Zalo.
Troubleshooting
Common Issues:
- Invalid or expired API credentials may cause authentication failures.
- Providing an incorrect or non-existent group ID will result in errors or empty member lists.
- Exceeding the allowed limit for member retrieval might cause partial data or API errors.
Error Messages:
- Errors thrown during API calls are caught and returned as part of the output JSON under an
errorfield if the node is set to continue on failure. - If not continuing on failure, the node throws an error indicating the issue with the specific item index.
- Errors thrown during API calls are caught and returned as part of the output JSON under an
Resolutions:
- Verify that the API key or authentication token is valid and has necessary permissions.
- Confirm the group ID exists and the authenticated user has access rights.
- Adjust the "Giới Hạn" property to a reasonable number supported by the API.
Links and References
Note: The above summary is based solely on static analysis of the provided source code and property definitions without runtime execution.