Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to perform operations on various resources, including tasks ("Tarefa"). Specifically, for the "Get" operation on the "Tarefa" resource, it retrieves a single task item by its ID. This is useful when you need detailed information about a specific task within your real estate management workflow, such as fetching task details for follow-up or reporting.

Practical examples:

  • Retrieve a task by selecting it from a dropdown list or specifying its ID dynamically.
  • Use the retrieved task data to trigger notifications, update other systems, or generate reports.

Properties

Name Meaning
Task Name or ID Select a task from a list of existing tasks or specify a task ID using an expression. This identifies which task to retrieve.

Output

The node outputs the JSON representation of the requested task under the json field. The structure corresponds directly to the task object returned by the Imobzi API and includes all available fields for that task (e.g., title, description, dates).

No binary data output is provided by this operation.

Example output snippet (conceptual):

{
  "id": 123,
  "title": "Follow up client",
  "description": "Call client to discuss contract",
  "date": "2024-06-01",
  ...
}

Dependencies

  • Requires an active connection to the Imobzi API via 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 needed beyond the configured API authentication.

Troubleshooting

  • Common issues:

    • Invalid or missing task ID: Ensure the selected or specified task ID exists in Imobzi.
    • Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
    • Network or API downtime: Check connectivity and Imobzi service status.
  • Error messages:

    • "Recurso "tarefa" não suportado!": Indicates the resource name is incorrect or unsupported; ensure "tarefa" is spelled correctly.
    • "Operação "get" não suportada!": Means the operation is not recognized; only supported operations should be used.
    • API response errors (e.g., 404 Not Found): Usually mean the task ID does not exist; verify the ID.

To resolve errors, confirm input parameters, check credentials, and consult Imobzi API documentation for valid IDs and permissions.

Links and References

Discussion