Zalo Group icon

Zalo Group

Quản lý nhóm Zalo

Overview

This node manages Zalo groups by interacting with the Zalo API. It supports various group-related operations such as creating groups, retrieving group information, managing members and deputies, changing group details (name or avatar), and creating notes within groups.

The "Đổi Tên Nhóm" (Change Group Name) operation specifically allows users to rename an existing Zalo group by providing the group's ID and the new desired name.

Practical examples:

  • Renaming a project discussion group to reflect a new project phase.
  • Updating a social group’s name to match a rebranding or event.
  • Correcting typos or standardizing group names across an organization.

Properties

Name Meaning
ID Nhóm The unique identifier of the Zalo group whose name you want to change.
Tên Mới The new name to assign to the specified Zalo group.

Output

The output JSON contains the response from the Zalo API after attempting to change the group name. This typically includes confirmation details about the updated group name or related metadata returned by the API.

Example output structure:

{
  "groupId": "string",
  "newName": "string",
  "status": "success"
}

(Note: The exact fields depend on the Zalo API's response for the rename operation.)

Dependencies

  • Requires a valid Zalo API credential with authentication details including cookie, IMEI, and user agent.
  • The node uses the zca-js library to interact with the Zalo API.
  • Proper configuration of the Zalo API credential in n8n is necessary to authenticate requests.

Troubleshooting

  • Invalid Credentials: If the node throws an error indicating no API instance found, verify that the provided Zalo API credentials are correct and active.
  • Group Not Found: Errors may occur if the provided group ID does not exist or the authenticated user lacks permission to modify it.
  • Network Issues: Connectivity problems can cause request failures; ensure stable internet access.
  • API Rate Limits: Frequent requests might be throttled by Zalo API; consider adding delays or handling rate limit errors gracefully.
  • Input Validation: Ensure that the group ID and new name are correctly provided and non-empty.

Links and References

Discussion