Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various resources, including "Integracao" (Integration). Specifically, the Update operation for the "Integracao" resource allows users to update an existing integration item by specifying its ID and the fields to modify. This is useful in scenarios where you need to programmatically maintain or synchronize integration configurations within Imobzi, such as updating connection details, metadata, or other relevant attributes of an integration.

Practical example:
You have an integration setup in Imobzi that connects to a third-party service. When the credentials or configuration change, you can use this node's Update operation to automatically update the integration details without manual intervention.


Properties

Name Meaning
Integration Name or ID Select an existing integration from the list or specify its ID via expression.
Update Fields Collection of fields to update on the integration item. Includes:
- Date Date associated with the integration item.
- Description Text description of the integration.
- Email Email address related to the integration.
- Name Name of the integration item.
- Phone Phone number associated with the integration.
- Title Title of the integration item.
- Value Numeric value related to the integration item.

Output

The node outputs JSON data representing the updated integration item returned by the Imobzi API. The output structure contains the updated fields and any additional metadata provided by the API response under the json property.

No binary data output is produced by this operation.


Dependencies

  • Requires an active connection to the Imobzi API using an API key or authentication token configured in n8n credentials.
  • The node uses authenticated HTTP requests to interact with the Imobzi REST endpoints.
  • No additional external dependencies are required beyond the configured Imobzi API credential.

Troubleshooting

  • Common issues:

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

    • "Recurso "integracao" não suportado!" — Indicates the resource name is incorrect or unsupported; verify the resource selection.
    • "Operação "update" não suportada!" — Means the operation is not recognized; ensure "update" is selected.
    • API error responses will be passed through; check the message for details like validation errors or permission issues.
  • Resolution tips:

    • Double-check input parameters, especially the integration ID and update fields.
    • Use expressions carefully to ensure they resolve correctly.
    • Enable "Continue On Fail" if you want the workflow to proceed despite individual item errors.

Links and References

Discussion