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 perform various operations on different resources such as contacts, leads, properties, contracts, and more. Specifically, for the Contact resource with the Get operation, it retrieves detailed information about a single contact by its name or ID.
Common scenarios where this node is beneficial include:
- Fetching contact details to enrich workflows with customer data.
- Automating CRM updates or validations based on contact information.
- Integrating contact data retrieval into larger automation pipelines involving real estate management or client communications.
For example, you can use this node to get a contact's full profile by selecting their name or ID from a dropdown list, then use that data downstream in your workflow to send personalized emails or update other systems.
Properties
| Name | Meaning |
|---|---|
| Contact Name or ID | Select a contact by name or ID from a dynamically loaded list, or specify an ID using an expression. |
Output
The node outputs JSON data representing the retrieved contact's details. The structure corresponds directly to the Imobzi API response for a contact, typically including fields like name, email, phone, and other contact-specific attributes.
Example output JSON snippet:
{
"id": 123,
"name": "John Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
...
}
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 REST endpoints.
- No additional external dependencies beyond the configured API authentication.
Troubleshooting
Error: Resource not supported!
This occurs if an unsupported resource name is provided. Ensure the resource is set to "contact" for this operation.Error: Operation not supported!
Happens when an invalid operation is selected. For this summary, only "get" is relevant; verify the operation setting.API Authentication Errors
If the API key or credentials are missing or invalid, the node will fail to authenticate. Check your Imobzi API credentials configuration in n8n.Invalid Contact ID
If the specified contact ID does not exist, the API may return a 404 or empty response. Confirm the contact exists or select from the dropdown list.Continue On Fail
If enabled, the node will output error messages per item instead of stopping execution, useful for bulk operations.
Links and References
- Imobzi API Documentation (official API docs, for reference)
- n8n Expressions Documentation (for using expressions in property fields)