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 and the Create operation, it allows users to create new property records in the Imobzi system by sending specified property details.

Common scenarios where this node is beneficial include:

  • Automating the addition of new properties into a real estate management system.
  • Integrating form submissions or external databases with Imobzi to keep property listings up-to-date.
  • Streamlining workflows that require creating property entries based on dynamic input data.

For example, a user could use this node to automatically add a new property with its title, description, value, and contact information whenever a new lead is qualified.

Properties

Name Meaning
Date Date associated with the property item
Description Textual description of the property
Email Contact email address related to the property
Name Name identifier for the property
Phone Contact phone number related to the property
Title Title or headline of the property
Value Numeric value representing the property's price or worth

These fields are grouped under "Create Fields" and can be optionally provided when creating a new property. Only the fields supplied will be sent to the API.

Output

The node outputs JSON data representing the response from the Imobzi API after creating the property. The output JSON typically contains the newly created property's details as returned by the API.

Example structure of the output JSON might include:

{
  "id": "123",
  "title": "Sample Property",
  "description": "A beautiful house",
  "value": 250000,
  "email": "contact@example.com",
  "phone": "1234567890",
  "date": "2024-01-01",
  "name": "Property Name"
}

No binary data output is produced by this node.

Dependencies

  • Requires an active connection to the Imobzi API via an API key or authentication token configured in n8n credentials.
  • The node uses authenticated HTTP requests to interact with the Imobzi REST endpoints.
  • Proper API credentials must be set up in n8n before using this node.

Troubleshooting

  • Unsupported Resource Error: If you select a resource not supported by the node, it will throw an error indicating the resource is unsupported. Ensure "Imovel" (property) is selected for this operation.
  • Operation Not Supported: Selecting an operation other than "create" for the "Imovel" resource may cause errors if not implemented.
  • API Authentication Failures: Errors related to authentication usually mean the API key or token is missing, invalid, or expired. Verify your credentials configuration.
  • Empty or Invalid Field Data: Sending empty or incorrectly typed fields may result in API validation errors. Make sure to provide valid values according to the field descriptions.
  • Network Issues: Connectivity problems with the Imobzi API endpoint will cause request failures. Check network access and API availability.

Links and References


This summary focuses on the "Imovel" resource and "Create" operation as requested, describing how to use the node to create new property records in Imobzi.

Discussion