Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various resources, including agendas. Specifically, the "Delete" operation for the "Agenda" resource allows users to delete an existing agenda item by specifying its name or ID. This is useful in scenarios where you need to programmatically remove outdated or incorrect agenda entries from your Imobzi account.

Practical examples:

  • Automatically deleting completed or canceled agenda items as part of a workflow.
  • Cleaning up test or temporary agenda entries after certain processes finish.
  • Removing agenda items based on external triggers or conditions in your automation.

Properties

Name Meaning
Agenda Name or ID Select an agenda from the list or specify its ID using an expression. This identifies which agenda to delete.

Output

The output JSON contains the response data from the Imobzi API after attempting to delete the specified agenda. Typically, this will include confirmation of deletion or relevant status information returned by the API. The output structure is:

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

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 perform operations on Imobzi resources.
  • Proper permissions on the Imobzi account are necessary to delete agenda items.

Troubleshooting

  • Common issues:

    • Specifying an invalid or non-existent agenda ID will cause the API to return an error.
    • Insufficient permissions or expired API credentials can lead to authentication failures.
    • Network connectivity problems may prevent successful API calls.
  • Error messages and resolutions:

    • "Resource 'agenda' not supported!" — This indicates an internal misconfiguration; ensure the resource is correctly set to "agenda".
    • "Operation 'delete' not supported!" — Verify that the operation is correctly set to "delete".
    • API errors related to invalid IDs usually mean the specified agenda does not exist; double-check the ID or use the dropdown to select a valid agenda.
    • Authentication errors require checking the API key credential setup in n8n.

Links and References

Discussion