Zalo Group icon

Zalo Group

Quản lý nhóm Zalo

Overview

This node manages Zalo groups, specifically allowing users to retrieve the list of members in a Zalo group. It is useful for scenarios where you need to get detailed membership information of a group, such as for group management, analytics, or automation tasks involving group members.

Use Case Examples

  1. Retrieve members of a specific Zalo group to display or process their information.
  2. Limit the number of members returned to handle large groups efficiently.

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 return in the response.

Output

JSON

  • members - An array of member IDs limited by the specified 'Giới Hạn' parameter.
  • admins - An array of admin IDs of the group.
  • currentMems - An array representing current members of the group.
  • updateMems - An array representing updated members of the group.
  • totalMember - The total number of members in the group.

Dependencies

  • Zalo API accessed via an API key credential with cookie, IMEI, and user agent for authentication.

Troubleshooting

  • Ensure valid Zalo API credentials are provided; otherwise, the node will throw an error indicating no API instance found.
  • If the group ID is invalid or the user does not have permission, the API call to get group members may fail.
  • The 'Giới Hạn' parameter must be a positive number; otherwise, the node may not return expected results.

Discussion