Actions16
Overview
This node interacts with Zalo Group functionalities, specifically managing and retrieving information about Zalo groups and their members. The selected operation "Lấy Thông Tin Thành Viên" (Get Group Members Info) allows users to fetch detailed information about specific group members by providing their user IDs.
Common scenarios where this node is beneficial include:
- Retrieving profile or membership details of certain members within a Zalo group.
- Automating member data collection for reporting or administrative purposes.
- Integrating Zalo group member info into other workflows or systems.
Practical example:
- You have a list of member IDs from a Zalo group and want to get their detailed information such as names, roles, or statuses to update your CRM or notify team leads.
Properties
| Name | Meaning |
|---|---|
| Danh Sách ID Thành Viên (nếu nhiều người dùng vui lòng phân cách bằng dấu phẩy) | A comma-separated list of member IDs whose information you want to retrieve. |
Output
The output JSON contains:
status: A string indicating the success of the operation, typically"Thành công"(Success).response: An object containing detailed information about the requested group members as returned by the Zalo API.
Example output structure:
{
"status": "Thành công",
"response": {
/* Detailed member information keyed by user IDs */
}
}
No binary data output is produced by this operation.
Dependencies
- Requires valid Zalo API credentials including an API authentication token (cookie), device IMEI, and user agent string.
- The node uses an external Zalo API client library to perform operations.
- Proper configuration of these credentials in n8n is necessary for successful API calls.
Troubleshooting
Common issues:
- Invalid or expired credentials leading to failure in API initialization.
- Incorrectly formatted or empty user ID list causing no data to be returned.
- Network or API service downtime affecting connectivity.
Error messages:
"No API instance found. Please make sure to provide valid credentials."
Resolution: Verify that the API credentials are correctly set and not expired.- Errors related to invalid user IDs or empty input may occur if the user ID list is malformed or missing.
Resolution: Ensure the user IDs are provided as a comma-separated string without extra spaces or invalid characters.
Enabling "Continue On Fail" can help handle errors gracefully in batch executions.
Links and References
- Zalo Official API Documentation (for reference on group member info endpoints)
- n8n Documentation on Creating Custom Nodes