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 Condomínios API, allowing users to interact with various resources related to condominium management. Specifically, the "Listar Unidades" operation under the "Unidade" resource retrieves a list of units (unidades) associated with a given condominium. This is useful for scenarios where you need to fetch and process unit data, such as generating reports, syncing unit information with other systems, or managing unit-related workflows.
Example use cases:
- Automatically retrieving all units in a condominium to update a property management database.
- Fetching unit details to send notifications or billing information.
- Integrating unit data into dashboards or analytics tools.
Properties
| Name | Meaning |
|---|---|
| ID do Condomínio | The unique identifier of the condominium whose units are to be listed. This is a required string input. |
Output
The node outputs an array of JSON objects, each representing a unit retrieved from the Superlogica API. Each item corresponds to one unit's data structure as returned by the API. The exact fields depend on the API response but typically include unit identifiers, descriptions, status, and other relevant unit details.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Superlogica API.
- The node uses the Superlogica API endpoint, defaulting to
https://api.superlogica.net/v2/condorif not otherwise specified in credentials. - Proper configuration of the API authentication tokens (app token and access token) is necessary.
Troubleshooting
- Missing Credentials Error: If the node throws an error about missing credentials, ensure that the API key credential is properly set up and linked in n8n.
- API URL Issues: If the API URL is incorrect or unreachable, verify the endpoint in the credentials configuration.
- Invalid Condominium ID: Providing an invalid or non-existent condominium ID may result in empty results or API errors. Double-check the ID value.
- Continue On Fail Behavior: If enabled, the node will return error messages within the output JSON instead of stopping execution, which can help in batch processing scenarios.
Links and References
- Superlogica Condomínios API Documentation (official API docs)
- n8n documentation on creating custom nodes