Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various resources such as users, leads, properties, contacts, contracts, and more. Specifically for the Usuario (User) resource with the Delete operation, it allows you to delete a user by specifying their User Name or ID.

Common scenarios where this node is beneficial include automating user management workflows, such as removing users who no longer need access or cleaning up inactive accounts in bulk. For example, you could use this node in an automation that deletes a user after they have been deactivated in another system.

Properties

Name Meaning
User Name or ID Select a user from a dynamically loaded list of users or specify a user ID using an expression. This identifies which user to delete.

Output

The output JSON contains the response data from the Imobzi API after attempting to delete the specified user. Typically, this will include confirmation details or status information about the deletion operation.

Example output structure:

{
  "json": {
    // API response data confirming deletion or related info
  }
}

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Imobzi API.
  • The node uses an API key credential (or equivalent authentication token) configured in n8n to authenticate requests.
  • The node relies on the Imobzi API endpoint /users/{id} for deleting users.

Troubleshooting

  • Common issues:

    • Invalid or missing user ID: Ensure the User Name or ID property is correctly set and corresponds to an existing user.
    • Authentication errors: Verify that the API key or authentication credentials are valid and have sufficient permissions to delete users.
    • Network or API downtime: Check connectivity and Imobzi service status if requests fail unexpectedly.
  • Error messages:

    • "Resource 'usuario' not supported!" — This indicates an invalid resource selection; ensure "Usuario" is selected.
    • "Operation 'delete' not supported!" — Indicates an unsupported operation; verify the operation is set to "Delete".
    • API error responses (e.g., 404 Not Found, 401 Unauthorized) will be passed through; check the message for specifics and adjust configuration accordingly.
  • To continue processing other items even if one fails, enable the "Continue On Fail" option in the node settings.

Links and References

Discussion