Actions62
- Lead Actions
- Account Actions
- Agenda Actions
- Contact Actions
- Contrato Actions
- Documento Actions
- Evento Actions
- Financeiro Actions
- Imovel Actions
- Integracao Actions
- Locacao Actions
- Tarefa Actions
- Usuario Actions
Overview
This node integrates with the Imobzi API to manage rental data ("Locacao" resource). Specifically, the "Get" operation retrieves detailed information about a single rental by its name or ID. This is useful for workflows that need to fetch and process specific rental records, such as generating reports, updating related systems, or triggering notifications based on rental details.
For example, you might use this node to:
- Retrieve tenant information and lease details for a particular rental.
- Fetch rental contract data to verify payment status.
- Integrate rental data into a CRM or accounting system.
Properties
| Name | Meaning |
|---|---|
| Rental Name or ID | Select a rental from a dropdown list or specify its ID using an expression. Identifies which rental record to retrieve. |
Output
The node outputs a JSON object containing the rental data returned by the Imobzi API. The structure corresponds directly to the rental resource's fields in Imobzi, including tenant information, lease terms, dates, and other relevant rental details.
The output is accessible under the json property of the node's output item. There is no binary data output.
Example output snippet (conceptual):
{
"id": 123,
"tenant": "John Doe",
"startDate": "2023-01-01",
"endDate": "2023-12-31",
"propertyId": 456,
...
}
Dependencies
- Requires an active connection to the Imobzi API via an API key credential configured in n8n.
- The node uses authenticated HTTP requests to interact with Imobzi endpoints.
- No additional external dependencies are needed beyond the configured API authentication.
Troubleshooting
Common issues:
- Invalid or missing rental ID: Ensure the selected rental exists and the ID is correct.
- Authentication errors: Verify that the API key credential is valid and has necessary permissions.
- Network or API downtime: Check connectivity and Imobzi service status.
Error messages:
"Recurso "locacao" não suportado!": Indicates the resource is not recognized; likely a misconfiguration."Operação "get" não suportada!": Means the operation is unsupported; ensure "Get" is selected.- API response errors will be passed through; check the error message for details (e.g., 404 if rental not found).
To handle errors gracefully, enable "Continue On Fail" in the node settings to allow workflow continuation despite individual failures.
Links and References
- Imobzi API Documentation (general reference for API endpoints and data structures)
- n8n Expressions Documentation (for using expressions in property fields)