Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various real estate-related resources, including events. Specifically, the Delete operation on the Evento (Event) resource allows users to delete an event by specifying its name or ID. This is useful for automating the removal of outdated or canceled events from the Imobzi system.

Practical scenarios include:

  • Automatically deleting events that are no longer relevant.
  • Cleaning up test or temporary events created during workflows.
  • Managing event lifecycle within a larger automation process involving real estate management.

Properties

Name Meaning
Event Name or ID Choose an event from a dynamically loaded list or specify an event ID using an expression.

The "Event Name or ID" property lets you select which event to delete. The options are loaded dynamically from the Imobzi API, showing event titles or IDs.

Output

The output JSON contains the response data from the Imobzi API after attempting to delete the specified event. Typically, this will confirm successful deletion or provide error details if the operation failed.

Example output structure:

{
  "json": {
    // API response data confirming deletion or error message
  }
}

No binary data 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.
  • No additional external dependencies beyond the Imobzi API and n8n's HTTP request helper.

Troubleshooting

  • Common issues:

    • Specifying an invalid or non-existent event ID will cause the API to return an error.
    • Network or authentication failures can prevent the request from succeeding.
    • Attempting to delete an event without proper permissions may result in authorization errors.
  • Error messages:

    • "Resource 'evento' not supported!" — indicates a misconfiguration or unsupported resource selection.
    • "Operation 'delete' not supported!" — indicates an unsupported operation was selected.
    • API error messages returned in the output JSON should be reviewed for specific causes.
  • Resolutions:

    • Verify the event ID or name is correct and exists in the Imobzi system.
    • Ensure the API key credential is valid and has sufficient permissions.
    • Check network connectivity and API endpoint availability.

Links and References

Discussion