Zalo Group icon

Zalo Group

Quản lý nhóm Zalo - Tạo nhóm, thêm/xóa thành viên, đổi tên, avatar và quản lý ghi chú

Overview

This node interacts with Zalo Group functionalities, specifically allowing management of group members. The "Xóa Thành Viên Khỏi Nhóm" (Remove User from Group) operation enables users to remove one or multiple members from a specified Zalo group by their user IDs.

Common scenarios where this node is beneficial include:

  • Moderating group membership by removing inactive or unwanted members.
  • Automating group maintenance tasks in community or team management workflows.
  • Integrating group member management into broader automation pipelines involving Zalo groups.

For example, an admin could use this node to automatically remove users who violate group rules or to clean up group membership lists periodically.

Properties

Name Meaning
ID Nhóm (groupId) The unique identifier of the Zalo group from which users will be removed.
ID Người Dùng (nếu nhiều người dùng vui lòng phân cách bằng dấu phẩy) (userIds) One or more user IDs to remove from the group, separated by commas if multiple users.

Output

The output JSON contains the response from the Zalo API after attempting to remove the specified users from the group. It typically includes status information and details about the operation's success or failure.

Example structure (simplified):

{
  "status": "success",
  "response": {
    // API-specific details about the removal operation
  }
}

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for authenticating with the Zalo API.
  • The node depends on an internal Zalo API client library to perform group operations.
  • Proper configuration of the Zalo API credentials within n8n is necessary for successful execution.

Troubleshooting

  • Common issues:

    • Invalid or missing group ID or user IDs can cause the operation to fail.
    • Network or authentication errors due to incorrect API credentials.
    • Attempting to remove users who are not members of the group may result in partial failures or error messages.
  • Error messages:

    • Errors thrown by the node include descriptive messages from the underlying API client.
    • If the node is set to continue on failure, errors for individual items will appear in the output JSON under an error field.
    • To resolve errors, verify that the group ID and user IDs are correct and that the API credentials have sufficient permissions.

Links and References

Discussion