Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
This node, named "Evolution API," allows users to interact with the Evolution API service. Specifically, for the resource "Grupo" and operation "Buscar Link De Convite" (Fetch Invite Link), it fetches an invitation code for a specified group within an instance. This is useful in scenarios where you need to programmatically retrieve invite links to share or manage group memberships without manual intervention.
Practical examples include:
- Automating the distribution of group invite links in messaging platforms.
- Integrating group management workflows where invite codes are required dynamically.
- Monitoring or auditing group access by fetching current invite codes.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance from which to fetch the invite code. |
| ID Do Grupo | The unique identifier (ID) of the group for which the invite code will be retrieved. |
Output
The node outputs a JSON array containing the result of the invite code fetch operation. Each item in the array corresponds to the data returned by the Evolution API for the requested group invite link. The exact structure depends on the API response but typically includes fields such as the invite code or URL.
If the node supports binary data output, it would represent any associated files or media related to the invite link, but based on the provided code and properties, the output is purely JSON.
Dependencies
- Requires an API key credential for authenticating with the Evolution API service.
- The node expects the Evolution API base URL
https://doc.evolution-api.com/api-referenceto be accessible. - Proper configuration of the API authentication credentials within n8n is necessary.
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 "fetch-invite-code" respectively.
- Missing Required Parameters: Ensure both "Nome Da Instância" and "ID Do Grupo" are provided; these are mandatory.
- API Authentication Failures: Confirm that the API key credential is valid and has the necessary permissions.
- Network Issues: Check connectivity to the Evolution API endpoint.
- Unexpected API Response: If the output is empty or malformed, verify the group ID exists and the instance name is correct.
Links and References
- Evolution API Documentation (base URL referenced in the node)
- n8n Documentation on Creating Custom Nodes