Actions59
- 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
- Entrar en El Grupo
- Salir Del Grupo
- Chat Actions
- Perfil Actions
- Evento Actions
Overview
This node, named "Wazend API," allows users to interact with the Wazend platform via its API. Specifically, for the resource "Grupo" and operation "Entrar en El Grupo" (Join Group), it enables an instance to join a specified group using an invitation code. This is useful in scenarios where automated workflows need to manage group memberships dynamically, such as onboarding new instances into collaboration groups or managing access control within the Wazend environment.
Practical example: Automatically joining a newly created instance to a project group by providing the group's invite code, streamlining setup processes without manual intervention.
Properties
Name | Meaning |
---|---|
Nombre De La Instancia | The name of the instance that will join the group. |
Código De La Invitación | The invitation code of the group to join (e.g., JZNHJLvnNd04UvGefiEZAA). |
Output
The node outputs a JSON array containing the response from the Wazend API after attempting to join the group. The exact structure depends on the API's response but typically includes confirmation details about the joined group or error information if the join failed.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Wazend API.
- The base URL for API requests is
https://docs.wazend.net/wazend
. - Proper configuration of this credential in n8n is necessary for successful execution.
Troubleshooting
Common Issues:
- Invalid or expired invitation code leading to failure in joining the group.
- Incorrect instance name causing API rejection.
- Network connectivity issues preventing communication with the Wazend API.
- Missing or invalid API authentication credentials.
Error Messages:
"Operação não suportada."
indicates that the requested operation is not supported for the selected resource; ensure the correct resource and operation are chosen.- API errors related to authorization or invalid parameters will be returned from the Wazend API and should be checked against the provided inputs.
To resolve these issues:
- Verify the invitation code and instance name are correct.
- Ensure the API key credential is valid and has appropriate permissions.
- Check network connectivity.
- Confirm that the resource and operation names match those supported by the node.
Links and References
- Wazend API Documentation (base URL used by the node)
- n8n Documentation on Creating Custom Nodes