Actions62
- Lead Actions
- Account Actions
- Agenda Actions
- Contact Actions
- Contrato Actions
- Documento Actions
- Evento Actions
- Financeiro Actions
- Imovel Actions
- Integracao Actions
- Locacao Actions
- Tarefa Actions
- Usuario Actions
Overview
This node integrates with the Imobzi API to manage various resources related to real estate and financial management. Specifically, for the Financeiro (Financial Account) resource with the Delete operation, it allows users to delete a financial account by specifying its ID or selecting it from a list.
Common scenarios where this node is beneficial include automating the removal of outdated or incorrect financial accounts in bulk workflows, cleaning up data after transactions are completed, or integrating with other systems that require synchronization of financial account records.
For example, you might use this node in an automation that deletes a financial account once a contract is terminated or when a rental agreement ends, ensuring your financial records stay accurate and up-to-date.
Properties
| Name | Meaning |
|---|---|
| Financial Account Name or ID | Select a financial account from a dropdown list loaded dynamically from your Imobzi account, or specify an ID using an expression. This identifies which financial account will be deleted. |
Output
The output JSON contains the response data from the Imobzi API after attempting to delete the specified financial account. Typically, this includes confirmation details or status information about the deletion operation.
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 (e.g., the account does not exist), the output will contain an error message describing the issue.
This node does not output binary data.
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 financial accounts.
Troubleshooting
Common Issues:
- Attempting to delete a financial account that does not exist or has already been deleted.
- Insufficient permissions or invalid API credentials causing authentication failures.
- Network connectivity issues preventing communication with the Imobzi API.
Error Messages:
"Recurso "financeiro" não suportado!": Indicates the resource name is incorrect or unsupported; ensure the resource is set to "financeiro"."Operação "delete" não suportada!": Means the operation is not supported; verify the operation is set to "delete".- API errors returned from Imobzi (e.g., 404 Not Found, 401 Unauthorized) will be passed through; check your API credentials and the existence of the financial account ID.
Resolution Tips:
- Verify the financial account ID exists before attempting deletion.
- Confirm API credentials are valid and have the required scopes/permissions.
- Use expressions carefully to ensure the correct ID is passed.
- Enable "Continue On Fail" if you want the workflow to proceed despite individual item errors.
Links and References
- Imobzi API Documentation (for detailed API endpoints and data models)
- n8n Expressions Documentation (to learn how to use expressions for dynamic IDs)
- n8n HTTP Request Node (for understanding underlying request mechanics)
This summary focuses on the Financeiro resource's Delete operation as requested, based on static analysis of the provided source code and property definitions.