Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
This node, named "Evolution API," is designed to interact with the Evolution API service. Specifically, for the resource "Mensagem" and operation "Enviar PIX," it facilitates sending PIX payments—a popular instant payment method in Brazil—via the Evolution API. This node is useful in automating financial transactions where you need to programmatically send PIX payments to beneficiaries.
Practical examples include:
- Automating payroll or vendor payments using PIX.
- Integrating PIX payment sending into a larger workflow that handles order processing or billing.
- Triggering PIX transfers based on events such as invoice approval or customer requests.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance that will send the PIX payment. |
| Número Do Destinatário | The recipient's number (likely a unique identifier or contact) to whom the PIX is sent. |
| Nome Do Beneficiário | The name of the beneficiary who will receive the PIX payment. |
| Tipo Da Chave | The type of PIX key used for the transaction. Options: Telefone, E-Mail, CPF, CNPJ, Aleatória (Random). |
| Chave PIX | The actual PIX key value of the beneficiary. |
Output
The node outputs a JSON array containing the response from the Evolution API after attempting to send the PIX payment. The exact structure depends on the API response but typically includes confirmation details about the transaction status, identifiers, or error messages if any.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Evolution API.
- The base URL for API requests is
https://doc.evolution-api.com/api-reference. - Proper configuration of the API credential within n8n is necessary for successful execution.
Troubleshooting
- Unsupported Operation Error: If the node throws an error stating the operation is not supported, verify that the resource and operation names are correctly set to "messages-api" and "send-pix" respectively.
- Authentication Failures: Ensure the API key credential is valid and has the necessary permissions.
- Invalid PIX Key or Type: Double-check the PIX key and its type; incorrect values may cause the API to reject the request.
- Missing Required Properties: All required properties must be provided; missing any will likely result in errors.
- API Response Errors: Inspect the returned JSON for error messages from the Evolution API to diagnose issues like insufficient funds or invalid beneficiary details.
Links and References
- Evolution API Documentation (base URL referenced in the code)
- PIX Payment System - Official Information (for understanding PIX keys and types)