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 Contacts. Specifically, for the Contact resource with the Create operation, it allows users to create a new contact record in the Imobzi system by specifying relevant fields such as name, email, phone, and other details.
Common scenarios where this node is beneficial include automating the addition of new contacts from form submissions, CRM systems, or other data sources into Imobzi, enabling seamless synchronization and management of contact information without manual entry.
For example, when a new lead fills out a contact form on a website, this node can automatically create a corresponding contact in Imobzi with the provided details like name, email, and phone number.
Properties
| Name | Meaning |
|---|---|
| Date | Date of the contact item (string). |
| Description | Description or notes about the contact (string). |
| Email address of the contact (string). | |
| Name | Name of the contact (string). |
| Phone | Phone number of the contact (string). |
| Title | Title or position of the contact (string). |
| Value | Numeric value associated with the contact (number). |
These fields are grouped under "Create Fields" and are used to specify the details of the contact to be created.
Output
The node outputs JSON data representing the newly created contact as returned by the Imobzi API. The output structure includes all the properties of the created contact record as provided by the API response.
If the API returns additional metadata or nested objects, these will also be included in the json output field. The node does not output binary data.
Example output snippet (simplified):
{
"id": "12345",
"name": "John Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"description": "New client contact",
"date": "2024-06-01",
"title": "Manager",
"value": 1000
}
Dependencies
- Requires an active connection to the Imobzi API.
- Needs an API authentication token or API key credential configured in n8n to authorize requests.
- The node uses HTTP methods (POST) to send data to the Imobzi API endpoints.
- Proper network access to the Imobzi API endpoint is necessary.
Troubleshooting
Common Issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing incomplete or incorrectly formatted fields may result in API validation errors.
- Network connectivity issues can prevent successful API calls.
Error Messages:
"Resource 'contact' not supported!"— This indicates an unsupported resource was selected; ensure "Contact" is chosen."Operation 'create' not supported!"— Indicates an unsupported operation; verify that "Create" is selected.- API error messages related to missing required fields or invalid data types should be resolved by reviewing the input fields.
- If the node throws errors related to request failures, check API credentials and network connectivity.
Resolution Tips:
- Double-check API credentials and permissions.
- Validate all required fields before execution.
- Use expressions carefully to ensure correct data types.
- Enable "Continue On Fail" if you want the workflow to proceed despite individual item errors.
Links and References
- Imobzi API Documentation (Assumed URL, replace with actual if known)
- n8n Documentation on HTTP Request Node
- n8n Expressions Guide