Zalo User Interact icon

Zalo User Interact

Gửi tin nhắn và tương tác với Zalo User

Overview

This node operation allows creating a note or reminder within a specified group on the Zalo platform. It is useful for scheduling reminders, notes, or announcements that can be pinned and optionally set to repeat at defined intervals. Typical use cases include team task reminders, event notifications, or important group announcements.

For example, a project manager might create a daily stand-up reminder pinned in the project group, or an event organizer could schedule a one-time note about an upcoming meeting.

Properties

Name Meaning
Group Id The unique identifier of the Zalo group where the note/reminder will be created.
Tiêu đề nhắc hẹn (noteTitle) The title or subject of the note/reminder.
Thời gian nhắc hẹn (startTime) The scheduled time for the reminder. If omitted, the note acts as a regular note without a reminder time.
Lặp lại (repeat) The frequency of repetition for the reminder. Options: Không lặp (No repeat), Hàng ngày (Daily), Hàng tuần (Weekly), Hàng tháng (Monthly).
Ghim nhắc hẹn (pinAct) Boolean flag indicating whether to pin the reminder in the group chat.

Output

The output JSON contains information about the created note/reminder, including its status and details returned from the Zalo API. The structure typically includes:

  • A success flag indicating if the creation was successful.
  • Details of the created note such as ID, title, start time, repeat settings, and pin status.
  • Error information if the creation failed.

If binary data is involved (not indicated here), it would represent attachments or media related to the note.

Dependencies

  • Requires access to the Zalo API with appropriate authentication credentials (e.g., an API key or token).
  • The node depends on network connectivity to communicate with Zalo's service endpoints.
  • Proper configuration of credentials in n8n is necessary to authorize API requests.

Troubleshooting

  • Missing or invalid Group Id: Ensure the Group Id is correct and the authenticated user has permission to post in the group.
  • Invalid date/time format for startTime: Use ISO 8601 or the datetime format supported by the node.
  • API authentication errors: Verify that the API key or token is valid and has not expired.
  • Permission errors when pinning: Pinning may require additional permissions; check group settings.
  • Repeat option misconfiguration: Confirm that the repeat value matches one of the allowed options (0-3).

Common error messages may include:

  • "Unauthorized" or "Authentication failed": Check API credentials.
  • "Group not found": Verify the Group Id.
  • "Invalid parameters": Review input property values for correctness.

Links and References


Note: This summary is based on static analysis of the provided source code and input properties, without runtime execution.

Discussion