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 service. Specifically, for the resource Perfil and operation Actualizar Nombre Del Perfil, it updates the profile's name to a new value provided by the user. This is useful in scenarios where you need to programmatically rename user profiles or instances within the Evolution API system, such as updating user display names or correcting profile information.
Example use cases:
- Renaming a user profile after a legal name change.
- Standardizing profile names across multiple systems.
- Automating profile updates during onboarding or data synchronization processes.
Properties
Name | Meaning |
---|---|
Nombre De La Instancia | The current instance name that identifies which profile instance to update. |
Nombre | The new name to assign to the profile. |
Output
The node outputs a JSON array containing the result of the update operation. Typically, this will include confirmation details such as success status, updated profile information, or error messages 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 authentication credentials in n8n is necessary.
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 "Perfil" and "Actualizar Nombre Del Perfil" respectively.
- Authentication errors: Ensure the API key credential is valid and has sufficient permissions to update profile names.
- Invalid input errors: Make sure the "Nombre De La Instancia" and "Nombre" fields are filled out correctly and meet any API constraints (e.g., string length).
- Network issues: Confirm network connectivity to the Evolution API endpoint.
Links and References
- Evolution API Documentation (official API reference)
- n8n documentation on creating custom nodes