ZuckZapGo Group icon

ZuckZapGo Group

Manage WhatsApp groups with ZuckZapGo API

Overview

This node integrates with the ZuckZapGo API to manage WhatsApp groups. It supports a variety of group-related operations such as creating groups, retrieving group information, managing participants, updating group settings (name, description, photo, announcement mode, ephemeral messages), handling invite links, and leaving groups.

A common use case is automating WhatsApp group management tasks within workflows, for example:

  • Automatically creating a new group and adding participants.
  • Fetching group details or invite links for reporting or sharing.
  • Updating group settings like name or description based on external triggers.
  • Removing or promoting participants programmatically.
  • Leaving a group when certain conditions are met.

Specifically, the "Leave" operation allows the user to leave a specified WhatsApp group by providing its Group JID.

Properties

Name Meaning
Group JID The unique identifier (JID) of the WhatsApp group to operate on (e.g., 120363312246943103@g.us). Required for the Leave operation.

Output

The node outputs JSON data representing the response from the ZuckZapGo API for the requested operation. For the "Leave" operation, the output JSON typically contains confirmation or status information about the leave action performed on the specified group.

No binary data output is produced by the "Leave" operation.

Example output JSON structure (simplified):

{
  "success": true,
  "message": "Left the group successfully"
}

Dependencies

  • Requires an active connection to the ZuckZapGo API via an API key credential configured in n8n.
  • The node uses the ZuckZapGo API endpoints to perform group management actions.
  • Proper network access to the ZuckZapGo service is necessary.

Troubleshooting

  • Error: Binary property not found — Not applicable for the Leave operation but may occur in other operations involving images.
  • Invalid Group JID — Ensure the Group JID is correctly formatted and corresponds to an existing WhatsApp group.
  • API Authentication Errors — Verify that the API key credential is valid and has sufficient permissions.
  • Network Issues — Check connectivity to the ZuckZapGo API endpoint.
  • Continue On Fail — If enabled, errors will be returned as part of the output JSON instead of stopping execution.

Links and References

Discussion