Overview
This node, named "Zalo Tag," is designed to manage tags within the Zalo platform. It currently supports listing all tags associated with a Zalo account. This functionality is useful for users who want to retrieve and work with their existing tags in Zalo, such as for organizing contacts or messages by categories.
A practical example would be a marketing automation workflow where you need to fetch all available tags from Zalo to dynamically assign them to contacts or segment audiences based on these tags.
Properties
| Name | Meaning |
|---|---|
| Hành đỘng | Action to perform; options: "Danh Sách Thẻ" (List all tags) |
Output
The node outputs an array of JSON objects, each containing:
success: A boolean indicating if the operation was successful (true).labels: An array representing the list of tags retrieved from Zalo.
Example output JSON structure:
{
"success": true,
"labels": [
{
"id": "tag_id_1",
"name": "Tag Name 1"
},
{
"id": "tag_id_2",
"name": "Tag Name 2"
}
// ... more tags
]
}
The node does not output binary data.
Dependencies
- Requires an API key credential to authenticate with the Zalo platform.
- Uses the
zca-jslibrary to interact with the Zalo API. - The credential must provide a valid cookie, IMEI, and user agent string for authentication.
- Proper configuration of the Zalo API credentials in n8n is necessary before using this node.
Troubleshooting
- Login Initialization Failure: If the node cannot initialize the Zalo API client, it throws an error indicating that login information should be checked. This usually means the provided credentials are invalid or expired.
- Error Messages: Errors during login will include the message prefix "Lỗi đăng nhập Zalo:" followed by the specific error detail. To resolve, verify that the cookie, IMEI, and user agent values in the credentials are correct and up to date.
- Empty Tag List: If the returned tag list is empty, ensure that the authenticated Zalo account actually has tags created.
Links and References
- Zalo Official Developer Documentation
- zca-js GitHub Repository (for the underlying Zalo API client library)