Actions64
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
- Instancia Actions
- Mensagem Actions
- Grupo Actions
Overview
The node "Evolution API" provides an interface to interact with the Evolution API, specifically allowing operations on various resources. For the resource "Grupo" and operation "Atualizar Nome Do Grupo" (Update Group Name), this node updates the name of a specified group within an instance.
This is useful in scenarios where group names need to be programmatically changed or standardized, such as renaming project groups, updating team names after reorganization, or correcting naming errors without manual intervention.
Example use case: Automatically update the group name when a project phase changes, ensuring all members see the current project title.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance where the group name will be updated. |
| ID Do Grupo | The unique identifier of the group whose name is to be updated. |
| Novo Nome Do Grupo | The new name that will be assigned to the group. |
Output
The node outputs a JSON array containing the response from the Evolution API after attempting to update the group name. This typically includes confirmation details or the updated group information. The exact structure depends on the API's response but generally confirms success or failure of the update operation.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Evolution API.
- The node expects the Evolution API endpoint to be accessible and properly configured.
- No additional environment variables are explicitly required beyond the API authentication.
Troubleshooting
- Operation Not Supported Error: If the node throws an error stating the operation is not supported, verify that the resource and operation names are correctly set to "groups-api" and "update-group-name" respectively.
- Authentication Failures: Ensure the API key credential is valid and has sufficient permissions to update group names.
- Invalid Group ID: Errors may occur if the provided group ID does not exist or is malformed; double-check the group identifier.
- Empty or Missing Required Fields: All three properties (instance name, group ID, new group name) are required. Missing any will cause the node to fail.
- API Connectivity Issues: Network problems or incorrect API URLs can prevent successful requests.
Links and References
- Evolution API official documentation (not provided here, please consult your API provider)
- n8n documentation on creating and using API credentials
- General REST API usage guidelines