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, profiles, webhooks, and send messages. It is useful for automating WhatsApp-related workflows such as connecting or disconnecting WhatsApp instances, updating instance or profile information, configuring webhooks to receive event notifications, and sending text or media messages programmatically.

A practical example is monitoring WhatsApp message events via webhooks to trigger further automation or sending customized messages to contacts or groups based on external triggers.

The specific operation "Ver Webhook da Instância" (View Instance Webhook) retrieves the current webhook configuration of a particular WhatsApp instance, allowing users to verify which URL and events are set up to receive webhook callbacks.

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. Not a credential but required for API access.

These properties are used to authenticate and target the correct instance when retrieving the webhook configuration.

Output

The output is a JSON array where each item contains the response from the uazapiGO API for the requested operation.

For the "Ver Webhook da Instância" operation, the JSON output includes the current webhook settings of the instance, typically containing:

  • The webhook URL configured to receive events.
  • The list of events that the webhook is subscribed to.

Example output structure (simplified):

{
  "url": "https://yourwebhook.url/endpoint",
  "events": [
    "connection",
    "messages",
    "contacts"
  ]
}

No binary data is output by this operation.

Dependencies

  • Requires access to the uazapiGO API endpoint specified by the "Url" property.
  • Requires a valid authentication token for the specific WhatsApp instance ("Token da Instância").
  • No special n8n credentials are mandatory for this operation, but an API key credential may be used for admin operations (not applicable here).

Troubleshooting

  • Invalid or missing token: If the token is incorrect or missing, the API will reject the request. Ensure the token corresponds to the targeted WhatsApp instance.
  • Incorrect URL format: The base URL must be a valid HTTPS URL without protocol duplication. The node sanitizes the URL but verify correctness.
  • API errors: The node throws errors if the API returns failure responses. Check the error message for details and verify API availability.
  • Network issues: Connectivity problems to the API endpoint will cause failures. Confirm network access and firewall rules.

Links and References

Discussion