Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
The node "Evolution API" allows interaction with the Evolution API service. Specifically, for the resource Grupo and operation Sair Do Grupo, it enables a user to leave a specified group by providing the group ID and the instance name. This is useful in scenarios where automated workflows need to manage group memberships dynamically, such as removing a bot or user from a chat group when certain conditions are met.
Practical example: Automatically leaving a group after completing a task or when a user unsubscribes from notifications.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance to use for the API call. This identifies which instance of the Evolution API service to interact with. |
| ID Do Grupo | The unique identifier (ID) of the group that the user wants to leave. |
Output
The output of the node is a JSON array containing the response from the Evolution API after attempting to leave the specified group. The exact structure depends on the API response but generally includes confirmation of the action or error details if the operation 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 base URL and headers to be configured internally.
- No additional external dependencies beyond the Evolution API service itself.
Troubleshooting
- Operation not supported error: If the node throws an error stating the operation is not supported, verify that the resource is set to "groups-api" and the operation to "leave-group".
- Missing required properties: Ensure both "Nome Da Instância" and "ID Do Grupo" are provided; otherwise, the node will fail due to missing parameters.
- API authentication errors: Confirm that the API key credential is correctly configured and has sufficient permissions to perform group operations.
- Invalid group ID: If the group ID does not exist or the instance does not have access, the API may return an error. Double-check the group ID value.
Links and References
- Evolution API official documentation: https://doc.evolution-api.com/api-reference
- n8n documentation on creating custom nodes: https://docs.n8n.io/integrations/creating-nodes/