Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage real estate-related data. Specifically, the Update operation on the Imovel (Property) resource allows users to update details of an existing property in their Imobzi account.

Typical use cases include:

  • Modifying property information such as description, contact email, phone number, or value.
  • Keeping property records up-to-date automatically when changes occur in other systems.
  • Automating updates to multiple properties based on external triggers or workflows.

For example, you might use this node to update the price or description of a property after receiving new market data or client input.

Properties

Name Meaning
Property Name or ID Select the property to update from a dropdown list loaded dynamically, or specify its ID using an expression.
Update Fields Collection of fields to update for the selected property. Options include:
- Date: Date associated with the property record
- Description: Textual description of the property
- Email: Contact email address related to the property
- Name: Name of the property
- Phone: Contact phone number
- Title: Title of the property
- Value: Numeric value representing the property's worth

Output

The node outputs JSON data representing the updated property object returned by the Imobzi API. The output structure corresponds to the API's response schema for a property, typically including all property fields and their current values after the update.

No binary data is produced by this operation.

Example output snippet (simplified):

{
  "id": 123,
  "title": "Updated Property Title",
  "description": "New description here",
  "email": "contact@example.com",
  "phone": "1234567890",
  "value": 500000,
  "date": "2024-01-01"
}

Dependencies

  • Requires an API key credential configured in n8n to authenticate requests to the Imobzi API.
  • The node uses the Imobzi REST API endpoints under paths like /properties/{id}.
  • Network connectivity to the Imobzi service is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing property ID: Ensure the property exists and the ID is correct.
    • Authentication errors: Verify that the API key credential is valid and has sufficient permissions.
    • Empty update fields: If no fields are provided to update, the API may reject the request or perform no action.
    • Network or API downtime: Check connectivity and Imobzi service status.
  • Error messages:

    • "Recurso "property" não suportado!" — This indicates an unsupported resource was specified; ensure "Imovel" (property) is selected.
    • "Operação "update" não suportada!" — Indicates an unsupported operation; verify the operation parameter is set to "update".
    • API error responses will be passed through; check the message for details such as validation errors or permission issues.

To resolve errors, confirm all required parameters are correctly set, credentials are valid, and the Imobzi API is accessible.

Links and References

Discussion