Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various resources, including tasks ("Tarefa"). Specifically, the "Delete" operation for the "Tarefa" resource allows users to delete a task by specifying its name or ID. This is useful in automation workflows where tasks need to be programmatically removed based on certain conditions or triggers.

Practical examples:

  • Automatically deleting completed or obsolete tasks from your task management system.
  • Cleaning up tasks that were created erroneously or duplicated.
  • Integrating with other systems to synchronize task deletions.

Properties

Name Meaning
Task Name or ID Select a task from a dropdown list loaded dynamically from Imobzi or specify a task ID using an expression.

Output

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

If the deletion is successful, the output's json field will contain the API's response data confirming the deletion. If there is an error and the node is set to continue on failure, the output will include an error field with the error message.

No binary data output is produced by this operation.

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 API endpoints.
  • The "Task Name or ID" property dynamically loads available tasks from the API to assist user selection.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent task ID will result in an error from the API.
    • Network connectivity problems or incorrect API credentials will cause authentication failures.
    • Attempting to delete a task without sufficient permissions may lead to authorization errors.
  • Error messages:

    • "Recurso "tarefa" não suportado!" — indicates the resource is not supported; likely a misconfiguration.
    • "Operação "delete" não suportada!" — indicates the operation is not supported; check the selected operation.
    • API errors related to invalid IDs or permissions will be passed through; ensure the task ID exists and credentials have proper access.
  • Resolution tips:

    • Verify the task ID or select from the provided list.
    • Confirm API credentials are correctly set up and have necessary permissions.
    • Check network connectivity and API endpoint availability.

Links and References

Discussion