Zalo Group icon

Zalo Group

Quản lý nhóm Zalo

Overview

This node interacts with Zalo Group functionalities, specifically managing and retrieving information about groups and their members on the Zalo platform. 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 analysis.
  • Integrating Zalo group member info into other workflows or systems.

For example, if you have a list of member IDs from a Zalo group and want to get their detailed info such as names, roles, or statuses, this node can perform that query efficiently.

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 user 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" meaning "Success".
  • response: An object containing the detailed information of the requested group members as returned by the Zalo API.

Example output structure:

{
  "status": "Thành công",
  "response": {
    // Detailed member info keyed by user IDs or in an array format depending on API response
  }
}

No binary data output is produced by this operation.

Dependencies

  • Requires valid Zalo API credentials including authentication cookies, device IMEI, and user agent strings.
  • The node uses an external Zalo API client library to perform operations.
  • Proper configuration of the Zalo API credential in n8n is necessary to authenticate requests.

Troubleshooting

  • Invalid Credentials: If the node throws an error about missing or invalid API instance, ensure that the Zalo API credentials are correctly set up and contain valid cookie, IMEI, and user agent values.
  • Empty or Incorrect User IDs: Providing an empty string or malformed user ID list will likely cause the API call to fail or return no data. Make sure the user IDs are correct and separated by commas without extra spaces.
  • API Rate Limits or Network Issues: If requests fail intermittently, check network connectivity and whether the Zalo API has rate limits that might be exceeded.
  • Error Handling: If the node is configured to continue on failure, errors will be returned in the output JSON under an error field for each failed item.

Links and References

Discussion