Zalo CN Group icon

Zalo CN Group

Quản lý nhóm Zalo cá nhân

Overview

This node manages personal Zalo groups, allowing users to perform various group-related operations such as creating groups, retrieving group information, managing members, changing group details, and creating notes within groups. It is particularly useful for automating workflows that involve group management on the Zalo platform, such as syncing group data, updating group membership, or posting group notes programmatically.

A practical example is using this node to fetch detailed information about a specific Zalo group by its ID, which can then be used in further automation steps like reporting or notifications.

Properties

Name Meaning
ID Nhóm The unique identifier of the Zalo group whose information you want to retrieve. This is a required string input.

Output

The output JSON contains two main fields:

  • response: The full raw response object returned from the Zalo API containing all group-related data.
  • groupInfo: A specific subset of the response representing detailed information about the requested group identified by the provided group ID.

Example output structure:

{
  "response": { /* full API response object */ },
  "groupInfo": { /* detailed info about the specified group */ }
}

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Zalo API via an API key credential (referred to generically as "Zalo Credential").
  • The node uses stored authentication data including cookie, IMEI, and user agent strings to authenticate requests.
  • The external dependency is the zalo-api-final library, which handles communication with the Zalo platform.

Troubleshooting

  • Common issues:

    • Invalid or expired credentials may cause authentication failures.
    • Providing an incorrect or non-existent group ID will result in errors or empty responses.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "No API instance found. Please make sure to provide valid credentials."
      This indicates missing or invalid authentication data. Verify that the Zalo API credential is correctly configured and valid.
    • Errors thrown during API calls will include the message from the underlying API error. If the node is set to continue on fail, these errors will appear in the output JSON under an error field.

Links and References

Discussion