Bankerize - Gerenciamento de Propostas
Actions8
Overview
This node integrates with the Bankerize API to manage proposals in various ways, including sending a proposal for disbursement. The "Send to Disburse" operation specifically triggers the process of moving a proposal forward to the disbursement stage within Bankerize's system.
Common scenarios where this node is beneficial include automating financial workflows where proposals need to be programmatically advanced to disbursement after approval or other checks. For example, after validating customer data and approvals, you can use this node to send the approved loan or credit proposal to the disbursement phase without manual intervention.
Practical example: In a loan processing automation, once all validations are complete, the workflow uses this node with the "Send to Disburse" operation and the proposal's UUID to initiate the disbursement process directly via Bankerize's API.
Properties
| Name | Meaning |
|---|---|
| UUID Da Proposta | The unique identifier (UUID) of the proposal to be sent for disbursement. This is required. |
Output
The output JSON contains the response from the Bankerize API after attempting to send the specified proposal to disbursement. The exact structure depends on the API response but generally includes confirmation details or status information about the disbursement request.
If no data is returned, the node outputs a message indicating that no results were found.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Bankerize API.
- The node makes HTTP requests to Bankerize endpoints, requiring network access.
- Proper configuration of the Bankerize API credentials in n8n is necessary.
Troubleshooting
- Missing or invalid UUID: The node requires a valid UUID for the proposal. If omitted or empty, it throws an error stating the UUID is mandatory.
- API authentication errors: If the API key or credentials are incorrect or expired, the node will fail to authenticate and return an error.
- Network issues: Connectivity problems to the Bankerize API endpoint will cause request failures.
- Unexpected API responses: If the API returns no data or an unexpected format, the node may output a message indicating no results or throw an error.
- To resolve errors, verify the UUID input, ensure valid API credentials, and check network connectivity.
Links and References
- Bankerize API documentation (for detailed API behavior and response formats)
- n8n documentation on creating and using credentials
- General REST API usage guides