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
The node "Wazend API" provides integration with the Wazend service, allowing users to interact programmatically with its features. Specifically, for the Resource "Grupo" and Operation "Encontrar Participantes," this node fetches the list of participants in a specified group instance. This is useful in scenarios where you need to manage or analyze group membership dynamically, such as monitoring active members, automating participant notifications, or syncing group data with other systems.
Example use cases:
- Retrieving all participants of a chat group to send targeted messages.
- Auditing group membership for compliance or reporting.
- Synchronizing group participants with an external CRM or database.
Properties
| Name | Meaning |
|---|---|
| Nombre De La Instancia | The name of the Wazend instance where the group exists. Required to identify the context. |
| ID Del Grupo | The unique identifier (JID) of the group whose participants are to be found. |
Output
The node outputs a JSON array containing the participants of the specified group. Each item in the array represents a participant's details as returned by the Wazend API. The exact structure depends on the API response but typically includes identifiers and possibly metadata about each participant.
If the node supports binary data output, it would relate to any media or files associated with participants, but based on the provided code and operation, the output is purely JSON.
Dependencies
- Requires an API key or authentication credential configured in n8n to access the Wazend API.
- Network access to
https://docs.wazend.net/wazendas the base URL for API requests. - The node depends on the internal helper functions defined in the bundled
executemodule to perform the actual API call for the "find-participants" operation.
Troubleshooting
- Operation not supported error: If you receive an error stating the operation is not supported, verify that the resource and operation names are correctly set to "groups-api" and "find-participants" respectively.
- Authentication errors: Ensure the API credentials are correctly configured and valid.
- Empty or unexpected results: Confirm that the instance name and group ID are correct and that the group actually has participants.
- Network issues: Check connectivity to the Wazend API endpoint and firewall settings.
Links and References
- Wazend API Documentation (base URL used by the node)
- n8n documentation on creating custom nodes for further customization guidance