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 "Lead" resources, specifically allowing you to update existing leads. It is useful in scenarios where you need to programmatically modify lead information such as contact details, descriptions, or values within your real estate or customer management workflows.
For example, you might use this node to update a lead's email and phone number after receiving new contact information from a form submission or CRM system, ensuring your lead data stays current without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Lead Name or ID | Select an existing lead by name or ID to update. You can choose from a list loaded dynamically or specify an ID via expression. |
| Update Fields | Collection of fields to update on the selected lead. Options include: |
| - Date: Date associated with the lead item | |
| - Description: Text description of the lead | |
| - Email: Email address of the lead | |
| - Name: Name of the lead | |
| - Phone: Phone number | |
| - Title: Title related to the lead | |
| - Value: Numeric value associated with the lead |
Output
The node outputs JSON data representing the updated lead object returned by the Imobzi API. The output structure corresponds to the lead resource's data schema, including all fields that were updated or returned by the API.
No binary data output is produced by this operation.
Example output snippet (simplified):
{
"id": 123,
"name": "Updated Lead Name",
"email": "newemail@example.com",
"phone": "1234567890",
"description": "Updated description",
"date": "2024-06-01",
"title": "Lead Title",
"value": 10000
}
Dependencies
- Requires an API key credential for authenticating requests to the Imobzi API.
- The node uses the
imobziApicredential configured in n8n to authorize HTTP requests. - Network access to the Imobzi API endpoint is necessary.
Troubleshooting
Common issues:
- Invalid or missing lead ID: Ensure the lead exists and the ID is correct.
- Authentication errors: Verify that the API key credential is valid and has proper permissions.
- Empty update fields: If no fields are provided to update, the API may reject the request or perform no action.
Error messages:
"Recurso \"lead\" não suportado!": This indicates the resource parameter was not recognized; ensure "Lead" is selected."Operação \"update\" não suportada!": Means the operation is unsupported; verify the operation parameter is set to "Update".- API response errors will be passed through; check the message for details like invalid field values or permission issues.
Resolution tips:
- Double-check input parameters, especially the lead ID and update fields.
- Confirm API credentials and network connectivity.
- Use expressions carefully when specifying IDs to avoid syntax errors.
Links and References
- Imobzi API Documentation (official API docs, if available)
- n8n Expressions Documentation – for using expressions in property fields
- n8n Node Development Guide – general info on creating and troubleshooting nodes