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 register a payment receipt ("Recebimento") for a condominium. It allows users to record financial transactions related to boleto payments, specifying details such as the condominium ID, boleto ID, bank account, amount, date, and optional observations.
This node is beneficial in scenarios where property managers or accounting systems need to automate the recording of received payments directly into the Superlogica platform, ensuring accurate and up-to-date financial records without manual entry.
Practical example: Automatically registering payments received from residents by providing the boleto identifier, the bank account where the payment was deposited, the amount paid, and the date of receipt.
Properties
| Name | Meaning |
|---|---|
| ID do Condomínio | Identifier of the condominium related to the receipt. |
| ID do Boleto | Identifier of the boleto (payment slip) that is being marked as received. |
| ID da Conta Bancária | Identifier of the bank account where the receipt will be registered. |
| Valor | Amount of the receipt; decimal separator must be a dot (e.g., "1234.56"). |
| Data do Recebimento | Date when the receipt was made, formatted as MM/DD/YYYY. |
| Observações | Optional field for any notes or comments about the receipt. |
Output
The node outputs an array of JSON objects corresponding to each input item processed. Each JSON object contains the response data returned by the Superlogica API after attempting to register the receipt. This typically includes confirmation details of the registered receipt or error information if the operation failed.
No binary data output is produced by this node.
Dependencies
- Requires an active connection to the Superlogica Condomínios API.
- The user must provide valid API credentials including an application token and access token.
- The node uses the base URL
https://api.superlogica.net/v2/condorby default unless overridden in credentials. - Proper configuration of these credentials within n8n is necessary for successful execution.
Troubleshooting
- Missing Credentials Error: If credentials are not provided or invalid, the node throws an error indicating missing credentials. Ensure that the API tokens are correctly configured in n8n.
- Invalid Date Format: The "Data do Recebimento" must be in MM/DD/YYYY format. Using other formats may cause the API to reject the request.
- Decimal Separator: The "Valor" property requires a dot as the decimal separator. Using commas or other characters can lead to errors.
- API Errors: If the boleto ID, condominium ID, or bank account ID are incorrect or do not exist, the API will return an error. Verify these IDs before running the node.
- Continue on Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON.
Links and References
- Superlogica Condomínios API Documentation (official API docs, for detailed endpoint and parameter info)
- n8n Documentation (for general usage of custom nodes and credential setup)