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 real estate-related data. Specifically, for the Imovel (Property) resource and the Delete operation, it allows users to delete a property record by specifying its ID or selecting it from a list. This is useful in scenarios where properties need to be removed from the system, such as when a property is sold, no longer managed, or entered erroneously.
Practical example:
- Automatically deleting a property from Imobzi after it has been marked as sold in another system.
- Cleaning up test or duplicate property entries during data synchronization workflows.
Properties
| Name | Meaning |
|---|---|
| Property Name or ID | Select a property from a dropdown list loaded dynamically from Imobzi or specify a property ID manually. |
Output
The output JSON contains the response data from the Imobzi API after attempting to delete the specified property. Typically, this will include confirmation of deletion or relevant status information returned by the API. The structure is:
{
"data": { /* API response confirming deletion or related info */ }
}
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Imobzi API via an API key credential configured in n8n.
- The node uses authenticated HTTP requests to perform operations on Imobzi resources.
- The user must have appropriate permissions in Imobzi to delete property records.
Troubleshooting
Common issues:
- Attempting to delete a property that does not exist or has already been deleted may result in an error.
- Insufficient permissions or invalid API credentials can cause authentication failures.
- Network connectivity problems can prevent successful API calls.
Error messages and resolutions:
"Resource 'property' not supported!"— Indicates an internal misconfiguration; ensure the resource name is correct."Operation 'delete' not supported!"— Means the operation is not implemented for the selected resource; verify operation selection.- API errors indicating "Not Found" or "Unauthorized" usually mean the property ID is invalid or credentials lack required permissions.
- To resolve, verify the property ID, check API credentials, and confirm user permissions in Imobzi.
Links and References
- Imobzi API Documentation (hypothetical link, replace with actual if available)
- n8n Expressions Documentation – for using expressions to specify IDs dynamically