Actions10
Overview
This node manages Zalo user interactions through various operations on the "Zalo User" resource. Specifically, the Đổi Tên Gợi Nhớ (Change Alias Name) operation allows you to update the alias name (a nickname or a memorable name) of a Zalo user in your contacts.
Common scenarios where this node is beneficial include:
- Personalizing contact names for easier recognition.
- Updating or correcting saved nicknames in bulk via automation.
- Managing friend lists programmatically within workflows.
For example, you can automate renaming multiple users' aliases based on external data or user input, improving organization and clarity in your Zalo contacts.
Properties
| Name | Meaning |
|---|---|
| User ID | The unique identifier of the Zalo user whose alias name you want to change. |
| Alias Name | The new alias (nickname) to assign to the specified user. |
Output
The output JSON contains:
status: A string indicating the result status, typically"Thành công"meaning "Success".response: The raw response from the Zalo API after attempting to change the alias name. This may contain details about the updated alias or confirmation data.
Example output JSON structure:
{
"status": "Thành công",
"response": {
// API response details here
}
}
No binary data output is produced by this operation.
Dependencies
- Requires valid Zalo API credentials including an API key credential with cookie, device IMEI, and user agent information.
- Uses the
zalo-api-finallibrary internally to interact with the Zalo platform. - The node expects these credentials to be configured properly in n8n before execution.
Troubleshooting
Common issues:
- Invalid or expired credentials will cause login failure and prevent any API calls.
- Incorrect or missing User ID or Alias Name parameters will lead to errors.
- Network connectivity problems can interrupt communication with the Zalo API.
Error messages:
"No API instance found. Please make sure to provide valid credentials."
Means the node could not authenticate with Zalo due to invalid or missing credentials. Verify your API key and related settings.- Errors thrown during the alias change attempt will be reported with their message. If
Continue On Failis enabled, the node will return error details per item instead of stopping execution.
Links and References
- Zalo Official Developer Documentation
- Zalo API Node GitHub Repository (if available) (replace with actual link if known)