Zalo Group icon

Zalo Group

Quản lý nhóm Zalo

Overview

This node manages Zalo groups, specifically allowing users to perform various group-related operations within the Zalo messaging platform. The "Tạo Ghi Chú" (Create Note) operation lets users add a note to a specified Zalo group, optionally pinning it to the top of the group chat for visibility.

Practical scenarios include:

  • Adding important announcements or reminders as pinned notes in a group.
  • Sharing quick updates or instructions that all group members should see immediately.
  • Managing group communications by highlighting key messages.

Properties

Name Meaning
ID Nhóm The unique identifier of the Zalo group where the note will be created.
Nội Dung Ghi Chú The content text of the note to be added to the group.
Pin Ghi Chú Boolean option to pin the note at the top of the group chat for prominence (true or false).

Output

The output JSON contains:

  • status: A string indicating the success status, typically "Thành công" meaning "Success".
  • response: The detailed response object returned from the Zalo API after creating the note, which may include metadata about the note and confirmation details.

Example output structure:

{
  "status": "Thành công",
  "response": {
    // Detailed note creation response data from Zalo API
  }
}

No binary data is output by this operation.

Dependencies

  • Requires an API key credential to authenticate with the Zalo platform.
  • Uses the Zalo API client library internally to perform actions.
  • Node configuration must include valid credentials containing cookie, IMEI, and user agent information for authentication.

Troubleshooting

  • Invalid Credentials: If the node throws an error about missing or invalid API instance, verify that the provided API key credential is correct and includes valid cookie, IMEI, and user agent values.
  • Group ID Errors: Ensure the ID Nhóm property corresponds to an existing Zalo group accessible by the authenticated user.
  • Permission Issues: The authenticated user must have permission to create notes in the target group; otherwise, the API call will fail.
  • Pin Option: If the pinning does not work as expected, confirm that the boolean value is correctly set and supported by the group settings.

Links and References

Discussion