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 "Responsáveis Legais" (Legal Representatives) resource to list their roles ("Cargos"). It is designed to fetch paginated lists of roles associated with legal representatives in a condominium management context. This node is useful for automating retrieval of role data for reporting, synchronization with other systems, or administrative tasks within property management workflows.
For example, a property manager could use this node to automatically retrieve and update the list of legal representative roles across multiple condominiums, ensuring that internal records stay current without manual data entry.
Properties
| Name | Meaning |
|---|---|
| Itens Por Página | Number of items returned per request (maximum 50). Controls page size for pagination. |
| Página | Current page number used together with "Itens Por Página" to paginate through results. |
Output
The node outputs an array of JSON objects, each representing a role ("Cargo") of a legal representative retrieved from the Superlogica API. Each item corresponds to one role entry as returned by the API.
The exact structure of each JSON object depends on the API response but typically includes fields describing the role's identifier, name, and possibly related metadata.
No binary data output is produced by this operation.
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 will throw an error indicating credentials are missing. Ensure that the API authentication tokens are correctly set up in n8n.
- API Rate Limits or Pagination Issues: Since the node supports pagination, requesting too many items per page or incorrect page numbers may result in empty responses or errors. Use the "Itens Por Página" property with a maximum of 50 and increment "Página" accordingly.
- Network or API Errors: Any network issues or API-side errors will cause the node to fail unless "Continue On Fail" is enabled, in which case error details will be included in the output JSON.
Links and References
- Superlogica API Documentation (for detailed API endpoints and data structures)
- n8n Documentation on Creating Custom Nodes