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 financial account records within the "Financeiro" resource. Specifically, the Update operation allows users to modify existing financial account entries by specifying the account ID and the fields to update.
Common scenarios for this node include:
- Updating details of a financial account such as its date, description, contact email, name, phone number, title, or monetary value.
- Automating financial record adjustments based on external triggers or workflows.
- Synchronizing financial data between Imobzi and other systems.
For example, you might use this node to update the value and description of a financial account after receiving payment confirmation from another system.
Properties
| Name | Meaning |
|---|---|
Financial Account Name or ID (id) |
The identifier of the financial account to update. You can select from a list loaded dynamically or specify an ID via expression. This is required. |
Update Fields (updateFields) |
A collection of fields to update on the financial account. Options include: |
| - Date: Date of the item (string) | |
| - Description: Description of the item (string) | |
| - Email: Email address (string) | |
| - Name: Name of the item (string) | |
| - Phone: Phone number (string) | |
| - Title: Title of the item (string) | |
| - Value: Value of the item (number) |
Output
The node outputs an array of JSON objects, each representing the updated financial account data returned by the Imobzi API. The main output field is:
json: Contains the updated financial account data as returned by the API. This includes all fields of the financial account after the update.
The node does not output binary data.
Dependencies
- Requires an active connection to the Imobzi API using an API key or authentication token configured in n8n credentials.
- The node uses authenticated HTTP requests to interact with the Imobzi API endpoints.
- No additional external dependencies are required beyond the configured Imobzi API credential.
Troubleshooting
Error: Resource "financeiro" not supported!
This indicates an invalid resource selection. Ensure that the resource is set to "Financeiro" for financial accounts.Error: Operation "update" not supported!
This means the selected operation is not recognized. Confirm that the operation is set to "Update".API Request Failures (e.g., 401 Unauthorized, 404 Not Found)
Check that your API credentials are valid and have sufficient permissions. Also verify that the specified financial account ID exists.Empty or Missing Update Fields
If no fields are provided to update, the API may reject the request or perform no changes. Always specify at least one field in "Update Fields".Continue On Fail Behavior
If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON under anerrorproperty.
Links and References
- Imobzi API Documentation (Assumed official API docs; replace with actual URL if available)
- n8n Expressions Documentation
- n8n Node Development Guide
This summary covers the static analysis of the Imobzi node's update operation for the Financeiro resource based on the provided source code and input properties.