Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage real estate-related data. Specifically, for the Imovel (Property) resource with the Get operation, it retrieves detailed information about a single property by its ID or name. This is useful in scenarios where you want to fetch specific property details from your Imobzi account to use in workflows such as updating records, generating reports, or triggering other automation based on property data.

Practical example:
You have a workflow that triggers when a new lead is created, and you want to enrich the lead's data with details of a particular property they are interested in. Using this node, you can get the full property details by selecting the property from a dropdown or specifying its ID dynamically.

Properties

Name Meaning
Property Name or ID Select a property from a list loaded dynamically from Imobzi or specify a property ID using an expression.

Output

The node outputs the retrieved property data in the json field of the output item. The structure corresponds directly to the property object returned by the Imobzi API, containing all available fields and values for that property.

  • The output JSON contains detailed information about the property, such as title, address, description, and any other metadata provided by the API.
  • No binary data output is produced by this operation.

Example output snippet (simplified):

{
  "id": 123,
  "title": "Beautiful Apartment Downtown",
  "address": "123 Main St",
  "price": 350000,
  ...
}

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 the Imobzi REST endpoints.
  • No additional external dependencies beyond the configured API authentication.

Troubleshooting

  • Common issues:

    • Invalid or missing property ID: Ensure the selected property exists and the ID is correct.
    • Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
    • Network or API downtime: Check connectivity and Imobzi service status.
  • Error messages:

    • "Recurso \"property\" não suportado!" — Indicates the resource parameter was incorrect; ensure "Imovel" (property) is selected.
    • "Operação \"get\" não suportada!" — Means the operation is not recognized; verify the operation is set to "Get".
    • API errors returned from Imobzi will be passed through; check the error message for details (e.g., 404 if property not found).
  • To handle errors gracefully, enable the "Continue On Fail" option in the node settings.

Links and References

Discussion