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 Lead resource with the Create operation, it allows users to create new lead entries in the Imobzi system by specifying various lead details.

Common scenarios where this node is beneficial include:

  • Automating lead capture from web forms or other sources into the Imobzi CRM.
  • Integrating lead creation as part of a larger workflow that manages real estate sales or rentals.
  • Synchronizing leads from external marketing platforms into Imobzi.

For example, you could use this node to automatically add a new lead with their name, email, phone number, and description whenever a potential customer fills out a contact form on your website.

Properties

Name Meaning
Date Date of the lead item (string).
Description Description or notes about the lead (string).
Email Email address of the lead (string).
Name Name of the lead (string).
Phone Phone number of the lead (string).
Title Title associated with the lead (string).
Value Numeric value related to the lead, e.g., potential deal value (number).

These fields are grouped under "Create Fields" and can be optionally provided when creating a lead.

Output

The node outputs JSON data representing the newly created lead as returned by the Imobzi API. The output structure corresponds to the API's response and includes all lead properties stored in Imobzi.

No binary data output is produced by this operation.

Example output snippet (simplified):

{
  "id": 123,
  "name": "John Doe",
  "email": "john.doe@example.com",
  "phone": "555-1234",
  "description": "Interested in 2-bedroom apartment",
  "date": "2024-06-01",
  "title": "Potential Buyer",
  "value": 50000
}

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

Troubleshooting

  • Unsupported Resource Error: If the resource parameter is set incorrectly, the node will throw an error indicating the resource is not supported. Ensure "Lead" is selected for this operation.
  • Operation Not Supported: Using an unsupported operation for the Lead resource will cause an error. Use only supported operations like Create, Get, Update, Delete, or Get Many.
  • API Authentication Failures: Errors related to authentication usually mean the API key credential is missing, invalid, or expired. Verify the API key configuration in n8n.
  • Empty Required Fields: If required fields for lead creation are missing or empty, the API may reject the request. Provide at least some identifying information such as Name or Email.
  • 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 Lead resource's Create operation based on the provided source code and property definitions.

Discussion