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, including tasks ("Tarefa"). Specifically, for the Tarefa - Create operation, it allows users to create a new task item in the Imobzi system by specifying relevant fields such as date, description, email, name, phone, title, and value.
Typical use cases include automating task creation workflows within real estate or property management processes, where tasks need to be programmatically added based on triggers or other automation steps. For example, when a new lead is generated, a follow-up task can be automatically created with details like due date and contact information.
Properties
| Name | Meaning |
|---|---|
| Date | Date of the task item |
| Description | Description text providing details about the task |
| Email address associated with the task | |
| Name | Name identifier or label for the task |
| Phone | Phone number related to the task |
| Title | Title or headline of the task |
| Value | Numeric value associated with the task (e.g., priority, cost, or other numeric metric) |
These fields are grouped under the "Create Fields" collection and are optional; you can provide any subset of them when creating a task.
Output
The node outputs JSON data representing the newly created task object returned from the Imobzi API. The output JSON contains the data field from the API response, which includes all properties of the created task as stored in Imobzi.
No binary data output is produced by this operation.
Example output structure (simplified):
{
"json": {
"id": "123",
"title": "Follow up call",
"description": "Call client to discuss contract",
"date": "2024-06-01",
"email": "client@example.com",
"phone": "555-1234",
"name": "Task Name",
"value": 100
}
}
Dependencies
- Requires an active connection to the Imobzi API.
- Needs an API authentication credential configured in n8n to authorize requests.
- The node uses the Imobzi REST API endpoints corresponding to the resource "tasks" (
/tasks).
Troubleshooting
- Unsupported Resource Error: If you select a resource not supported by the node, it will throw an error indicating the resource is unsupported. Ensure "tarefa" is selected for task operations.
- Operation Not Supported: Using an unsupported operation will cause an error. Only the defined operations (create, get, update, delete, getAll) are valid.
- API Authentication Failures: If the API key or credentials are invalid or missing, requests will fail. Verify that the API credential is correctly set up in n8n.
- Empty Required Fields: While most create fields are optional, some Imobzi API configurations might require certain fields. Check API documentation if creation fails due to missing required data.
- Network Issues: Connectivity problems with the Imobzi API endpoint will cause request failures. Confirm network access and API availability.
Links and References
- Imobzi API Documentation (official API docs for detailed field definitions and usage)
- n8n Documentation - Creating Custom Nodes
- n8n Expressions Guide (for dynamic parameter values)
This summary focuses on the "Tarefa" resource with the "Create" operation as requested, describing how to use the node to create tasks in Imobzi via n8n workflows.