Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage rental records ("Locacao" resource). Specifically, the "Create" operation allows users to add new rental entries by sending specified data fields to the Imobzi rentals endpoint. This is useful for automating the creation of rental contracts or records in real estate management workflows.

Practical examples include:

  • Automatically creating a new rental record when a tenant signs a lease.
  • Adding rental details from form submissions or other systems into Imobzi.
  • Integrating rental data creation as part of a larger property management automation.

Properties

Name Meaning
Date Date of the rental item (string)
Description Description of the rental item (string)
Email Email address related to the rental (string, e.g., tenant's email)
Name Name associated with the rental item (string)
Phone Phone number related to the rental (string)
Title Title of the rental item (string)
Value Numeric value associated with the rental (number)

These fields are grouped under "Create Fields" and represent the data sent to create a new rental record.

Output

The node outputs JSON data representing the response from the Imobzi API after creating the rental record. The output JSON contains the newly created rental item's data as returned by the API, typically including all fields stored for that rental.

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 the Imobzi API endpoints.
  • Proper API credentials must be set up in n8n for authentication.

Troubleshooting

  • Common issues:

    • Missing or invalid API credentials will cause authentication failures.
    • Providing incomplete or incorrectly formatted fields may result in API errors.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "Recurso \"locacao\" não suportado!" indicates the resource name is incorrect or unsupported.
    • "Operação \"create\" não suportada!" means the operation is not recognized (unlikely if using the provided options).
    • API error messages returned from Imobzi will appear in the output JSON under an error field if "Continue On Fail" is enabled.
  • Resolutions:

    • Verify API credentials and permissions.
    • Ensure all required fields are correctly filled.
    • Check network access and API availability.

Links and References

Discussion