UazapiGo Unofficial icon

UazapiGo Unofficial

Interage com a API uazapiGO para gerenciar instâncias e enviar mensagens

Overview

This node integrates with the unofficial uazapiGO API to manage WhatsApp instances and send messages. It supports operations such as connecting or disconnecting WhatsApp instances, deleting instances, updating instance names, managing privacy settings, configuring webhooks, and sending text or media messages.

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

  • Deleting an existing WhatsApp instance from the system.
  • Connecting a new WhatsApp instance by generating a QR code or using a phone number.
  • Sending automated messages or media files to contacts or groups.

Specifically, the "Deletar instância" (Delete instance) operation removes a WhatsApp instance from the system via an authenticated API call.

Properties

Name Meaning
Url Base URL of the uazapiGO API. Defaults to https://api.uazapigo.com.
Token da Instância Authentication token for the specific WhatsApp instance. Required for instance-related calls.

These properties are used to authenticate and target the correct instance when performing operations like deleting it.

Output

The node outputs a JSON object representing the response from the uazapiGO API after performing the requested operation. For the "Deletar instância" operation, this typically includes confirmation of deletion or error details if the operation failed.

No binary data output is produced by this node.

Example output structure (simplified):

{
  "success": true,
  "message": "Instance deleted successfully"
}

or in case of failure:

{
  "error": "Instance not found"
}

Dependencies

  • Requires access to the uazapiGO API endpoint specified by the "Url" property.
  • Needs a valid authentication token for the targeted WhatsApp instance ("Token da Instância").
  • No internal n8n credentials are strictly required for this operation, but admin-level operations require an API key credential.
  • The node uses standard HTTP requests with JSON payloads.

Troubleshooting

  • Missing or invalid token: If the token is missing or incorrect, the API will reject the request. Ensure the "Token da Instância" is correctly set.
  • Incorrect URL: The base URL must be correct and accessible. Verify the "Url" property does not contain protocol duplication or typos.
  • Instance not found: Attempting to delete a non-existent instance will result in an error. Confirm the instance exists before deletion.
  • API errors: The node throws errors received from the API. Check the error message for details and verify API status.
  • Network issues: Connectivity problems can cause request failures. Ensure network access to the API endpoint.

Links and References


This summary focuses on the "Instancia" resource and the "Deletar instância" operation as requested.

Discussion