Actions42
- Condomínio Actions
- Plano de Contas Actions
- Conta Bancária Actions
- Movimentação Bancária Actions
- Unidade Actions
- Morador Actions
- Boleto Actions
- Recebimento Actions
- Fornecedor Actions
- Inadimplência Actions
- Segunda Via Actions
- Responsáveis Legais Actions
Overview
This node integrates with the Superlogica API, specifically targeting the "Conta Bancária" (Bank Account) resource to retrieve the balance ("Obter Saldo") of a bank account as of a specified reference date. It is useful in financial automation workflows where up-to-date bank account balances are needed for reporting, reconciliation, or triggering further actions based on available funds.
Practical examples:
- Automatically fetching the current balance of a condominium's bank account to update financial dashboards.
- Triggering payment processes only if the bank account balance exceeds a certain threshold.
- Periodically auditing bank account balances against expected values for fraud detection or accounting purposes.
Properties
| Name | Meaning |
|---|---|
| ID da Conta Bancária | The unique identifier of the bank account whose balance you want to retrieve. |
| Data de Referência | The reference date for which the balance should be calculated, in MM/DD/YYYY format. |
| Incluir Data de Referência | Boolean flag indicating whether to include the reference date itself in the balance calculation. Defaults to true. |
Output
The node outputs an array of JSON objects, each corresponding to an input item processed. For the "Obter Saldo" operation on "Conta Bancária," the json output contains the balance information retrieved from the Superlogica API as of the specified reference date.
The exact structure depends on the API response but typically includes fields such as:
- The balance amount.
- Possibly metadata about the account or the calculation date.
No binary data output is indicated by the source code.
Dependencies
- Requires valid credentials for the Superlogica API, including an application token and access token.
- The node expects these credentials to be configured in n8n prior to execution.
- Network access to the Superlogica API endpoint (
https://api.superlogica.net/v2/condorby default) is necessary.
Troubleshooting
- Missing Credentials Error: If credentials are not provided or invalid, the node throws an error stating that credentials were not supplied. Ensure that the API tokens are correctly set up in n8n.
- API Connectivity Issues: Network problems or incorrect API URLs can cause failures. Verify network connectivity and credential correctness.
- Invalid Date Format: The "Data de Referência" must be in MM/DD/YYYY format. Providing an incorrectly formatted date may lead to API errors or unexpected results.
- Continue On Fail Behavior: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON for failed items.
Links and References
- Superlogica API Documentation (general reference; specific endpoints depend on your Superlogica plan)
- n8n Documentation on Credentials
- n8n Documentation on Error Handling