Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to perform various operations on different resources such as users, leads, properties, contacts, contracts, financial accounts, rentals, documents, tasks, agendas, events, and integrations. Specifically for the Usuario (User) resource with the Get operation, it retrieves detailed information about a single user by their name or ID.

Common scenarios where this node is beneficial include:

  • Fetching user details for automation workflows that require user data.
  • Integrating user information into other systems or processes.
  • Automating user-related reporting or notifications.

Practical example:

  • You want to retrieve a specific user's profile information from Imobzi to send a personalized email or update another system with the latest user data.

Properties

Name Meaning
User Name or ID Select a user from the dropdown list loaded dynamically from Imobzi or specify a user ID via expression.

Output

The node outputs JSON data representing the user object retrieved from the Imobzi API. The structure corresponds directly to the user resource's data fields as returned by the API. The output is accessible under the json property of the node's output.

No binary data output is produced by this operation.

Example output snippet (conceptual):

{
  "id": 123,
  "name": "John Doe",
  "email": "john.doe@example.com",
  "phone": "+5511999999999",
  ...
}

Dependencies

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

Troubleshooting

  • Error: Resource "usuario" not supported!
    This indicates an invalid resource selection; ensure "Usuario" is selected correctly.

  • Error: Operation "get" not supported!
    This suggests an unsupported operation was chosen; verify the operation is set to "Get".

  • API request failures (e.g., 401 Unauthorized, 404 Not Found):

    • Check that the API key credential is valid and has necessary permissions.
    • Confirm the user ID exists in Imobzi.
    • Verify network connectivity to the Imobzi API endpoint.
  • Empty or missing output data:
    Ensure the user ID or name is correctly specified and that the user exists in the system.

  • If the node is set to continue on fail, errors will be included in the output JSON under an error field for each failed item.

Links and References

Discussion