Actions64
- Instancia Actions
- Mensaje Actions
- Grupo Actions
- Crear Grupo
- Actualizar Imagen Del Grupo
- Actualizar Nombre Del Grupo
- Actualizar Descripción Del Grupo
- Actualizar Configuraciones
- Actualizar Miembros
- Buscar Enlace De Invitación
- Revocar Enlace De Invitación
- Enviar Enlace De Invitación
- Buscar Grupos
- Encontrar Participantes
- Mensajes Temporales
- Unirse Al Grupo
- Salir Del Grupo
- Chat Actions
- Perfil Actions
- Evento Actions
- Integración Actions
Overview
The node "Evolution API" allows interaction with the Evolution API to perform various operations on different resources. Specifically, for the resource Grupo and operation Actualizar Configuraciones, it updates group settings such as who can send messages or edit configurations within a 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 changing group permissions based on external triggers.
Properties
Name | Meaning |
---|---|
Nombre De La Instancia | The name of the instance where the group exists; used to identify the target environment. |
ID Del Grupo | The unique identifier of the group whose settings will be updated. |
Acción | The specific setting to apply to the group. Options: |
- Solo Admins Envían Mensajes (Only admins can send messages) | |
- Todos Envían Mensajes (Everyone can send messages) | |
- Solo Admins Editan Configuraciones (Only admins can edit settings) | |
- Todos Editan Configuraciones (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 generally 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 base URL for requests is
https://doc.evolution-api.com/api-reference
. - Proper configuration of the API credential in n8n is necessary.
Troubleshooting
- Unsupported Operation Error: If the operation or resource is not supported, the node throws an error indicating the unsupported function. Ensure that the resource is set to "groups-api" and operation to "update-settings".
- Invalid or Missing Parameters: Required fields like instance name and group ID must be provided; missing these will cause errors.
- API Authentication Failures: Verify that the API key credential is correctly configured and has sufficient permissions.
- Network Issues: Connectivity problems to the Evolution API endpoint may cause timeouts or failures.
Links and References
- Evolution API Documentation (base URL referenced in the node)
- n8n documentation on Creating Custom Nodes