Actions9
Overview
This node manages Zalo user interactions through various operations such as accepting friend requests, sending friend requests, blocking or unblocking users, changing account settings, and retrieving user information. Specifically, the "Bỏ chặn người dùng" (Unblock User) operation allows you to remove a block on a specified Zalo user by their user ID.
Common scenarios for this node include automating social interactions on Zalo, managing friend lists, and updating user account details programmatically. For example, you could use it to automatically unblock users who meet certain criteria or to integrate Zalo user management into a larger workflow that handles customer engagement.
Properties
| Name | Meaning |
|---|---|
| User ID | The ID of the Zalo user to unblock |
Output
The output JSON contains:
status: A string indicating the success of the operation, typically"Thành công"(Success).response: The raw response from the Zalo API related to the unblock action.
Example output JSON:
{
"status": "Thành công",
"response": {
// API response details here
}
}
No binary data is output by this operation.
Dependencies
- Requires an API key credential with valid authentication details for Zalo.
- Uses stored cookies, IMEI, and user agent strings from credentials or input data to authenticate API calls.
- Depends on the external
zca-jslibrary to interact with the Zalo API.
Troubleshooting
- No API instance found: This error indicates invalid or missing credentials. Ensure that the API key credential is correctly configured with valid cookie, IMEI, and user agent values.
- Operation failures: If the unblock operation fails, check that the provided User ID is correct and that the authenticated account has permission to unblock that user.
- Continue on Fail: If enabled, the node will continue processing other items even if one item causes an error, returning the error message in the output JSON.
Links and References
- Zalo Official Developer Documentation
- zca-js GitHub Repository (for the underlying Zalo API client used)