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. Specifically, for the "Instancia" resource and the "Atualizar nome da instância" operation, it updates the display name of an existing WhatsApp instance.
Common scenarios where this node is useful include:
- Renaming a WhatsApp instance to better reflect its purpose or owner.
- Managing multiple WhatsApp instances programmatically by updating their names dynamically.
- Automating administrative tasks related to WhatsApp instance management in workflows.
Example use case:
- You have several WhatsApp instances connected to your system, and you want to rename one based on some external event or user input. This node can update the instance's name via the API without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Url | Base URL of the uazapiGO API. Default is https://api.uazapigo.com. |
| Token da Instância | Authentication token specific to the WhatsApp instance. Required to authorize the request. |
| Nome da Instância | New name to assign to the WhatsApp instance. |
Output
The node outputs a JSON object representing the API response after attempting to update the instance name. The structure depends on the API but generally includes confirmation of the update or error details.
No binary data output is produced by this operation.
Dependencies
- Requires access to the uazapiGO API endpoint specified by the "Url" property.
- Needs a valid authentication token for the specific WhatsApp instance ("Token da Instância").
- No special n8n credentials are mandatory, as the token is provided directly as a string input.
Troubleshooting
- Missing or invalid token: If the token is missing or incorrect, the API will reject the request. Ensure the token is correctly set and valid.
- Invalid URL: The base URL must be a valid HTTPS URL pointing to the uazapiGO API. Incorrect URLs will cause connection errors.
- Empty or invalid new name: Providing an empty or invalid name may result in API errors or no change. Always provide a meaningful non-empty string.
- API errors: The node throws errors if the API returns failure responses. Check the error message for details and verify API status and parameters.
- Network issues: Connectivity problems to the API endpoint will cause failures. Verify network access and firewall settings.
Links and References
- uazapiGO Official API Documentation (if available) (Note: link is illustrative, check actual docs)
- WhatsApp Business API Concepts
- n8n HTTP Request Node Documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/
This summary focuses solely on the "Instancia" resource and the "Atualizar nome da instância" operation as requested.