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 allowing users to manage various resources related to condominium administration. The "Excluir Movimentação" operation under the "Movimentação Bancária" resource enables users to delete a specific bank transaction by its ID. This is useful for scenarios where erroneous or duplicate bank transactions need to be removed from the system to maintain accurate financial records.
Practical examples include:
- Removing a mistakenly entered bank transaction.
- Cleaning up test data before finalizing reports.
- Automating the deletion of outdated or canceled transactions.
Properties
| Name | Meaning |
|---|---|
| ID da Movimentação | The unique identifier of the bank transaction to be deleted. This must be provided to specify which transaction to exclude. |
Output
The node outputs an array of JSON objects corresponding to each input item processed. For the "Excluir Movimentação" operation, the output JSON typically contains the response from the Superlogica API confirming the deletion status of the specified bank transaction.
If an error occurs during processing and the node is set to continue on failure, the output JSON will contain an error field with the error message describing what went wrong.
No binary data output is produced by this operation.
Dependencies
- Requires valid credentials for the Superlogica API, including an API URL (defaulting to
https://api.superlogica.net/v2/condorif not specified), an application token, and an access token. - The node depends on the external Superlogica API service being available and accessible.
- Proper configuration of these credentials within n8n is necessary for successful execution.
Troubleshooting
- Missing Credentials: If credentials are not provided or invalid, the node will throw an error indicating that credentials were not supplied.
- Invalid Transaction ID: Providing an incorrect or non-existent transaction ID may result in an API error; verify the ID before attempting deletion.
- API Connectivity Issues: Network problems or API downtime can cause failures; ensure network connectivity and API availability.
- Continue On Fail Behavior: When enabled, errors for individual items do not stop the entire workflow but are instead returned as error messages in the output JSON.
Links and References
- Superlogica API Documentation (for detailed API usage and authentication)
- n8n Documentation on Creating Custom Nodes