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 records ("Locacao" resource). Specifically, the Update operation allows users to modify existing rental entries by specifying the rental ID and the fields to update. This is useful in scenarios where rental details such as tenant information, dates, descriptions, or financial values need to be corrected or changed after creation.
Practical examples include:
- Updating a tenant's contact email or phone number.
- Changing the rental start date or description.
- Adjusting the rental value due to contract amendments.
Properties
| Name | Meaning |
|---|---|
| Rental Name or ID | Select an existing rental from a dropdown list or specify its ID via expression. |
| Update Fields | Collection of fields to update on the rental record. Options include: |
| - Date | The date associated with the rental item. |
| - Description | A textual description of the rental. |
| Tenant or contact email address. | |
| - Name | Name related to the rental (e.g., tenant name). |
| - Phone | Contact phone number. |
| - Title | Title or heading for the rental item. |
| - Value | Numeric value representing the rental amount or cost. |
Output
The node outputs JSON data representing the updated rental record returned by the Imobzi API. The output structure contains all fields of the rental after the update, reflecting the changes made.
If the update fails and "Continue On Fail" is enabled, the output will contain an error message for the failed item.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Imobzi API using an API key credential configured in n8n.
- The node uses authenticated HTTP requests to perform operations on the Imobzi platform.
- No additional external dependencies are required.
Troubleshooting
Common issues:
- Invalid or missing rental ID: Ensure the rental exists and the correct ID is provided.
- Empty update fields: If no fields are specified to update, the API may reject the request or make no changes.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
Error messages:
"Recurso "locacao" não suportado!"— indicates the resource is not recognized; check that "Locacao" is selected properly."Operação "update" não suportada!"— means the operation is unsupported; ensure "Update" is chosen.- API response errors (e.g., 400 Bad Request) usually indicate invalid field values or missing required data; review the update fields carefully.
To handle errors gracefully, enable "Continue On Fail" in the node settings to process subsequent items even if one fails.
Links and References
- Imobzi API Documentation (general reference for API endpoints and data models)
- n8n Expressions Documentation (for dynamic ID input)
- n8n Node Development Guide (for understanding node properties and execution)
This summary focuses on the "Locacao" resource and the "Update" operation as requested.