Actions18
- Administração Actions
- Instancia Actions
- Perfil Actions
- Webhooks e SSE Actions
- Enviar Mensagem Actions
Overview
This node integrates with the uazapiGO API to manage WhatsApp profiles, instances, messages, and webhooks. Specifically, for the Perfil (Profile) resource with the operation Altera o nome do perfil do WhatsApp (Change WhatsApp profile name), it allows you to update the display name of a WhatsApp profile associated with a particular instance.
Typical use cases include:
- Automatically updating the WhatsApp profile name based on external triggers or workflows.
- Synchronizing profile names across multiple WhatsApp instances.
- Personalizing the WhatsApp profile name dynamically in response to business logic.
For example, a business could use this node to update their WhatsApp profile name daily to reflect current promotions or campaigns.
Properties
| Name | Meaning |
|---|---|
| Url | Base URL of the uazapiGO API. Default is https://api.uazapigo.com. |
| Token da Instância | Authentication token for the specific WhatsApp instance. Required to authorize requests. |
| Nome do Perfil | New display name to set for the WhatsApp profile. |
Output
The node outputs a JSON object representing the API response from the uazapiGO service after attempting to change the profile name. The structure depends on the API but generally includes confirmation of success or error details.
No binary data output is produced by this operation.
Example output JSON might look like:
{
"success": true,
"message": "Profile name updated successfully"
}
or in case of failure:
{
"error": "Invalid token or insufficient permissions"
}
Dependencies
- Requires access to the uazapiGO API endpoint, typically at
https://api.uazapigo.com. - Needs a valid authentication token for the WhatsApp instance (
Token da Instância). - No special n8n credentials are mandatory, but the token must be provided as a parameter.
- Network connectivity to the API endpoint is required.
Troubleshooting
- Missing or invalid token: If the token parameter is missing or incorrect, the API will reject the request. Ensure the token is valid and correctly entered.
- Incorrect URL: The base URL must be correct and accessible. Verify no typos and that the API endpoint is reachable.
- Empty profile name: Sending an empty string for the new profile name may cause the API to reject the request. Always provide a non-empty string.
- API errors: The node throws errors if the API returns failures. Check the error message for clues, such as permission issues or rate limits.
- Network issues: Timeouts or connection errors indicate network problems; verify your environment's internet access.
Links and References
- uazapiGO Official API Documentation (for detailed API endpoints and parameters)
- WhatsApp Business API Profile Management (general reference on profile updates)
This summary focuses solely on the "Perfil" resource and the "Altera o nome do perfil do WhatsApp" operation as requested.