Actions64
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
- Instancia Actions
Overview
This node interacts with the Evolution API to manage group-related actions. Specifically, for the "Grupo" resource and the "Revogar Link De Convite" operation, it revokes (invalidates) an existing group invite link. This is useful in scenarios where you want to prevent further use of a previously shared group invitation, such as when a group is being closed to new members or if an invite link has been compromised.
Practical Example:
An administrator of a messaging group wants to ensure that no new users can join via an old invite link. By using this node, they can revoke the current invite code for a specific group instance.
Properties
| Display Name | Type | Description |
|---|---|---|
| Nome Da Instância | String | Digite o nome da instância que vai revogar o código. Enter the name of the instance that will revoke the code. (Required) |
| ID Do Grupo | String | ID do grupo para revogar o código de convite. The group ID whose invite code will be revoked. (Required) |
Output
The output is a JSON object (or array of objects) containing the result of the revoke invite code operation. The exact structure depends on the API response, but typically includes:
- Confirmation of the revocation
- Possibly the group ID and status
- Any relevant messages from the API
Example Output:
[
{
"success": true,
"groupJid": "123456@g.us",
"message": "Invite code revoked successfully"
}
]
Note: The actual fields may vary depending on the Evolution API's response.
Dependencies
- External Service: Requires access to the Evolution API.
- API Key/Credentials: You must configure valid Evolution API credentials in n8n under the credential type
evolutionApi. - n8n Configuration: No special environment variables are required beyond standard credential setup.
Troubleshooting
Common Issues:
- Invalid Credentials: If your API key or credentials are incorrect, the node will fail to authenticate.
- Incorrect Group ID: Providing a non-existent or malformed group ID will result in an error from the API.
- Unsupported Operation: If the operation or resource is not supported, you may see an error message about unsupported functions.
Error Messages:
"Operação não suportada."
Meaning: The selected operation is not available for the chosen resource.
Resolution: Double-check that you have selected the correct resource and operation.- API-specific errors (e.g., "Group not found", "Unauthorized") will be passed through from the Evolution API. Check your input values and credentials.