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
The node integrates with the Superlogica Condomínios API to edit an existing bank transaction (Movimentação Bancária). It allows users to update details of a specific bank movement within a condominium's financial records. This is useful for maintaining accurate and up-to-date financial data, correcting errors, or reflecting changes in transactions.
Practical examples:
- Correcting the description or value of a previously recorded bank transaction.
- Updating the date or type (income or expense) of a bank movement after receiving new information.
- Changing the associated accounting account for better financial categorization.
Properties
| Name | Meaning |
|---|---|
| ID do Condomínio | The unique identifier of the condominium where the bank transaction belongs. |
| ID da Movimentação | The unique identifier of the bank transaction to be edited. |
| Descrição | Description of the bank transaction, explaining its nature or purpose. |
| Valor | Monetary value of the transaction; decimal separator must be a dot (e.g., 1234.56). |
| Data da Movimentação | Date of the transaction in MM/DD/YYYY format. |
| Tipo de Movimentação | Type of transaction: "Entrada" (Income) or "Saída" (Expense). Values are 1 or 2 respectively. |
| ID da Conta Contábil | Identifier of the accounting account linked to this transaction for bookkeeping purposes. |
Output
The node outputs JSON data representing the updated bank transaction as returned by the Superlogica API. This typically includes all relevant fields of the transaction after modification, such as IDs, description, value, date, type, and associated accounting account.
No binary data output is involved.
Dependencies
- Requires connection to the Superlogica Condomínios API.
- Needs valid API credentials including an application token and access token.
- The API base URL defaults to
https://api.superlogica.net/v2/condorbut can be overridden via credentials.
Troubleshooting
- Missing Credentials: If API credentials are not provided or invalid, the node will throw an error indicating credentials are missing.
- Invalid Date Format: The date must be in MM/DD/YYYY format; incorrect formats may cause API rejection.
- Incorrect Decimal Separator: The value must use a dot as the decimal separator; commas will likely cause errors.
- Nonexistent IDs: Providing invalid condominium or transaction IDs will result in API errors about resource not found.
- API Errors: Network issues or API downtime will cause execution failures; ensure connectivity and API status.
- Continue on Fail: If enabled, the node will continue processing other items even if one fails, returning error details in the output.
Links and References
- Superlogica API Documentation (for detailed API usage and field definitions)
- n8n Documentation on Creating Custom Nodes