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 interact with various resources related to condominium management. The "Boleto" resource and its "Obter Boleto" operation enable retrieving detailed information about a specific boleto (a type of payment slip commonly used in Brazil). This is useful for automating financial workflows, such as fetching payment details for accounting or customer service purposes.
Practical examples include:
- Automatically retrieving boleto details by ID to verify payment status.
- Integrating boleto data into financial reports or dashboards.
- Using boleto information to trigger follow-up actions like sending reminders or updating records.
Properties
| Name | Meaning |
|---|---|
| ID do Boleto | The unique identifier of the boleto to retrieve. This is required to specify which boleto's details should be fetched. |
Output
The node outputs JSON data containing the boleto details retrieved from the Superlogica API. The structure typically includes all relevant fields describing the boleto, such as its ID, amount, due date, payer information, and payment status.
If the node encounters an error during execution and "Continue On Fail" is enabled, it outputs a JSON object with an error field describing the issue.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Superlogica API.
- The node uses the base URL
https://api.superlogica.net/v2/condorby default unless overridden by credentials. - Proper configuration of the API authentication tokens (app token and access token) is necessary.
Troubleshooting
- Missing Credentials: If the API credentials are not provided or invalid, the node will throw an error indicating that credentials were not supplied.
- Invalid Boleto ID: Providing an incorrect or non-existent boleto ID may result in an error response from the API.
- API Connectivity Issues: Network problems or incorrect API URLs can cause failures; ensure the API endpoint is reachable.
- Error Handling: When "Continue On Fail" is enabled, errors are returned as part of the output JSON under an
errorproperty, allowing workflow continuation.
Links and References
- Superlogica API Documentation (for detailed API endpoints and boleto data structure)
- n8n Documentation on Creating Custom Nodes