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 managed by the uazapiGO system.
Typical use cases include:
- Renaming a WhatsApp instance to better reflect its purpose or owner.
- Organizing multiple WhatsApp instances by updating their names dynamically.
- Automating administrative tasks related to WhatsApp instance management.
For example, if you have several WhatsApp instances connected to your system, you can use this node operation to rename one from "Support Bot" to "Sales Bot" based on changing business needs.
Properties
| Name | Meaning |
|---|---|
| Url | Base URL of the uazapiGO API (e.g., https://api.uazapigo.com). |
| Token da Instância | Authentication token specific to the WhatsApp instance. Required to authorize the request. |
| Nome da Instância | The new name to assign to the WhatsApp instance. |
Output
The node outputs a JSON object representing the response from the uazapiGO API after attempting to update the instance name. This typically includes confirmation of the update or details about the updated instance.
Example output structure (simplified):
{
"success": true,
"message": "Instance name updated successfully",
"data": {
"id": "instance-id",
"name": "New Instance Name",
...
}
}
No binary data 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 (provided via the Token da Instância property).
- No additional external services or environment variables are required beyond these.
Troubleshooting
- Invalid or missing token: If the token is incorrect or not provided, the API will reject the request. Ensure the token corresponds to the target WhatsApp instance.
- Incorrect URL: The base URL must be correct and accessible. Verify that the URL starts with
https://and points to the valid uazapiGO API endpoint. - Empty or invalid name: The new instance name should be a non-empty string. Providing an empty name may cause the API to return an error.
- API errors: Any HTTP errors returned by the API (e.g., 4xx or 5xx status codes) will be surfaced as node errors. Check the error message for details and verify API availability and credentials.
Links and References
- uazapiGO Official API Documentation (Assumed link; replace with actual if available)
- n8n Documentation: Creating Custom Nodes
- General WhatsApp Business API concepts for context on instance management.