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 to manage residents ("Morador") within condominium units. Specifically, the "Criar Morador" operation allows users to create a new resident record associated with a particular condominium and unit.
Common scenarios for this node include automating resident registration processes in property management workflows, syncing resident data from external systems, or bulk importing resident information into Superlogica.
For example, a property manager could use this node to automatically add new tenants or owners to the system when a lease agreement is signed, ensuring that contact details and identification numbers are properly recorded.
Properties
| Name | Meaning |
|---|---|
| ID do Condomínio | The unique identifier of the condominium where the resident will be registered. |
| ID da Unidade | The unique identifier of the unit (apartment/house) to which the resident belongs. |
| Nome | Full name of the resident being created. |
| CPF/CNPJ | Brazilian individual or company tax identification number of the resident (numbers only). |
| Email address of the resident. | |
| Telefone | Resident's phone number (optional). |
| Celular | Resident's mobile phone number (optional). |
| Tipo | Type of resident: "Proprietário" (Owner) or "Inquilino" (Tenant). |
| Data de Nascimento | Resident's date of birth in MM/DD/YYYY format (optional). |
Output
The node outputs an array of JSON objects, each representing the result of creating a resident. Each output item corresponds to one input item processed.
- The
jsonfield contains the response data returned by the Superlogica API for the created resident. This typically includes identifiers, status, and any other relevant resident details as provided by the API. - There is no binary data output.
Dependencies
- Requires valid credentials for the Superlogica API, including an API URL, application token, and access token.
- The node expects these credentials to be configured in n8n prior to execution.
- Network connectivity to the Superlogica API endpoint is necessary.
Troubleshooting
- Missing Credentials: If credentials are not provided or invalid, the node will throw an error indicating that credentials are missing.
- Invalid Input Data: Providing incorrect or incomplete required fields (e.g., missing condominium ID or resident name) may cause API errors. Ensure all required properties are correctly filled.
- API Errors: Errors returned from the Superlogica API (such as duplicate entries or validation failures) will be surfaced in the node output if "Continue On Fail" is enabled; otherwise, they will stop execution.
- Date Format Issues: The "Data de Nascimento" must be in MM/DD/YYYY format; incorrect formatting may lead to rejection by the API.
Links and References
- Superlogica Condomínios API Documentation (official API docs)
- n8n Documentation on Credentials