Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various resources such as leads, properties, contacts, contracts, financial accounts, rentals, documents, tasks, agendas, events, integrations, and users. Specifically, for the Integracao (Integration) resource with the Delete operation, it allows you to delete an existing integration by specifying its name or ID.

Common scenarios where this node is beneficial include automating the management of integrations within the Imobzi platform, such as removing obsolete or unwanted integrations programmatically as part of a workflow.

Practical example:

  • Automatically deleting an integration when a related external system is decommissioned.
  • Cleaning up test integrations after automated testing workflows.

Properties

Name Meaning
Integration Name or ID (id) Select the integration to delete from a dropdown list loaded dynamically from your Imobzi account, or specify the integration ID directly using an expression. This identifies which integration will be deleted.

Output

The node outputs a JSON object representing the response from the Imobzi API after attempting to delete the specified integration. The output structure is:

{
  "json": {
    // Response data from the API, typically confirmation of deletion or details of the deleted integration
  }
}

If the API returns data in data property, that is extracted; otherwise, the full response is returned.

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.
  • The user must have appropriate permissions on the Imobzi account to delete integrations.

Troubleshooting

  • Common issues:

    • Specifying an invalid or non-existent integration ID will likely cause an error.
    • Insufficient permissions on the Imobzi API credentials may result in authorization errors.
    • Network connectivity problems can cause request failures.
  • Error messages:

    • "Recurso \"integracao\" não suportado!" — indicates the resource is not supported; unlikely if using the correct resource.
    • "Operação \"delete\" não suportada!" — indicates the operation is not supported; again, unlikely here.
    • API errors returned from Imobzi will be passed through; check the message for details like "Not Found" or "Unauthorized".
  • Resolution tips:

    • Verify the integration ID exists and is correct.
    • Ensure the API key credential has delete permissions.
    • Check network connectivity and API endpoint availability.
    • Use the "Continue On Fail" option in the node settings to handle errors gracefully in workflows.

Links and References

Discussion