Actions18
- Administração Actions
- Instancia Actions
- Perfil Actions
- Webhooks e SSE Actions
- Enviar Mensagem Actions
Overview
This node integrates with the unofficial uazapiGO API to manage WhatsApp instances and send messages. It supports operations such as connecting or disconnecting a WhatsApp instance, checking its status, updating instance names, managing privacy settings, handling webhooks, and sending text or media messages.
A common use case is automating WhatsApp session management and messaging workflows within n8n, for example:
- Disconnecting an active WhatsApp instance to end its current session.
- Sending automated notifications or media files to contacts or groups.
- Configuring webhooks to receive real-time WhatsApp events.
Specifically, the "Desconectar instância" operation under the "Instancia" resource disconnects a WhatsApp instance, effectively ending its current session.
Properties
| Name | Meaning |
|---|---|
| Url | Base URL of the uazapiGO API (default: https://api.uazapigo.com). |
| Token da Instância | Authentication token for the specific WhatsApp instance (not a credential). |
These properties are required to authenticate and target the correct WhatsApp instance for the disconnect operation.
Output
The node outputs a JSON object representing the response from the uazapiGO API after attempting to disconnect the instance. The exact structure depends on the API but generally includes status information about the disconnection request.
No binary data output is produced by this operation.
Example output JSON might look like:
{
"success": true,
"message": "Instance disconnected successfully"
}
Dependencies
- Requires access to the uazapiGO API endpoint specified by the "Url" property.
- Requires a valid authentication token for the WhatsApp instance ("Token da Instância").
- No internal n8n credentials are mandatory for this operation, but an API key credential may be used for admin operations (not relevant here).
Troubleshooting
- Missing or invalid token: If the token is missing or incorrect, the API will reject the request. Ensure the token corresponds to the targeted WhatsApp instance.
- Incorrect URL: The base URL must be correctly formatted; otherwise, the HTTP request will fail.
- API errors: The node throws errors if the API returns failure responses. Check the error message for details.
- Network issues: Connectivity problems can cause timeouts or failures in reaching the API.
To resolve errors:
- Verify the token and URL inputs.
- Confirm the instance is active and reachable.
- Review API documentation for error codes returned.
Links and References
- uazapiGO Official API Documentation (hypothetical link, replace with actual if available)