Actions64
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
- Instancia Actions
- Mensagem Actions
- Grupo Actions
Overview
The node "Evolution API" allows interaction with the Evolution API, specifically supporting operations on various resources. For the resource Grupo and operation Atualizar Configurações (Update Settings), it updates group settings such as who can send messages or edit configurations within a specified group instance.
This node is useful in scenarios where automated management of group permissions is needed, for example:
- Restricting message sending to only admins during announcements.
- Allowing all members to send messages normally.
- Locking or unlocking group configuration editing rights.
Practical examples include automating group moderation policies or dynamically adjusting group permissions based on external triggers.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance where the group exists; identifies the environment or server. |
| ID Do Grupo | The unique identifier of the group whose settings will be updated. |
| Ação | The setting action to apply to the group. Options: |
| - Somente Admins Enviam Mensagens (Only admins can send messages) | |
| - Todos Enviam Mensagens (Everyone can send messages) | |
| - Somente Admins Editam Configurações (Only admins can edit settings) | |
| - Todos Editam Configurações (Everyone can edit settings) |
Output
The node outputs a JSON array containing the result of the update operation. The exact structure depends on the Evolution API response but typically includes confirmation of the applied settings or error details if the update failed.
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 reachable and properly configured.
- No additional environment variables are explicitly required beyond the API authentication.
Troubleshooting
- Unsupported Operation 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-settings" respectively.
- Authentication Failures: Ensure the API key credential is valid and has sufficient permissions to update group settings.
- Invalid Group ID: Providing an incorrect or non-existent group ID will cause the update to fail; double-check the group identifier.
- Network Issues: Connectivity problems with the Evolution API endpoint may cause timeouts or failures; verify network access.
- Invalid Action Value: The action property must be one of the predefined options; otherwise, the API may reject the request.
Links and References
- Evolution API official documentation (not provided here, but recommended to consult for detailed API behavior)
- n8n documentation on creating and using custom nodes and credentials