Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to perform various operations on different resources related to real estate management. Specifically, for the Evento (Event) resource and the Get operation, it retrieves detailed information about a single event by its name or ID.

Typical use cases include:

  • Fetching details of a specific event scheduled in the Imobzi system.
  • Automating workflows that require event data retrieval, such as sending reminders or updating calendars.
  • Integrating event data into other systems or reports.

For example, you might use this node to get an event's details by selecting it from a list or specifying its ID dynamically, then use that data downstream in your workflow.

Properties

Name Meaning
Event Name or ID (id) Select an event from a dropdown list loaded dynamically from Imobzi, or specify an event ID using an expression. This identifies which event to retrieve.

Output

The node outputs a JSON object containing the data of the requested event. The structure corresponds directly to the event data returned by the Imobzi API, typically including fields like title, date, description, and other event-specific details.

Example output JSON structure (fields may vary):

{
  "id": 123,
  "title": "Board Meeting",
  "date": "2024-07-01T10:00:00Z",
  "description": "Quarterly board meeting",
  ...
}

No binary data is output by this node.

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 Imobzi endpoints.
  • The id property options are dynamically loaded from the /events endpoint of the Imobzi API.

Troubleshooting

  • Error: Resource "evento" not supported!
    This indicates an internal mapping issue; ensure the resource is correctly set to "evento".

  • Error: Operation "get" not supported!
    This suggests the operation parameter is invalid or unsupported; verify the operation is set to "get".

  • API Request Failures (e.g., 401 Unauthorized, 404 Not Found)

    • Check that the API credentials are valid and have sufficient permissions.
    • Confirm the event ID exists in the Imobzi system.
    • Ensure network connectivity to the Imobzi API.
  • Empty or Missing Data in Output

    • Verify the selected event ID is correct.
    • Check if the event actually contains data in Imobzi.
  • Dynamic Options Loading Fails

    • Make sure the API credentials are properly configured.
    • The node requires internet access to fetch event lists dynamically.

Links and References

Discussion