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 users ("Usuario"). Specifically, for the "Usuario" resource and the "Create" operation, it allows you to create a new user record in the Imobzi system by sending specified user details.
Common scenarios where this node is beneficial include automating user creation workflows, syncing user data from other systems into Imobzi, or programmatically adding users based on triggers or events in your automation.
For example, you could use this node to automatically add a new user when a form is submitted on your website, populating fields like name, email, phone, and title.
Properties
| Name | Meaning |
|---|---|
| Date | Date of the item (string) |
| Description | Description of the item (string) |
| Email address (string), e.g., "name@email.com" | |
| Name | Name of the item (string) |
| Phone | Phone number (string) |
| Title | Title of the item (string) |
| Value | Value of the item (number) |
These properties are grouped under "Create Fields" and represent the data you can provide to create a new user in Imobzi.
Output
The node outputs JSON data representing the response from the Imobzi API after creating the user. The output JSON contains the newly created user's data as returned by the API, typically including all fields stored for that user.
If an error occurs during the creation process, the output will contain an error message describing the issue.
The node does not output binary data.
Dependencies
- Requires an active connection to the Imobzi API.
- Needs an API authentication credential configured in n8n to authorize requests to Imobzi.
- The node uses HTTP methods (POST for create) to interact with the Imobzi REST endpoints.
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing invalid or incomplete user data may result in API errors.
- Network connectivity problems can prevent successful API calls.
Error messages:
"Recurso "usuario" não suportado!"— This indicates the resource name is incorrect or unsupported; ensure "usuario" is selected."Operação "create" não suportada!"— Means the operation is not supported; verify the operation parameter.- API errors returned from Imobzi will be passed through; check the error message for details such as validation errors or missing required fields.
Resolution tips:
- Verify API credentials and permissions.
- Double-check input field values for correctness and completeness.
- Use the "Continue On Fail" option if you want the workflow to proceed despite individual item errors.
Links and References
- Imobzi API Documentation (example link, replace with actual if available)
- n8n Documentation on HTTP Request Node (for understanding API calls)
- n8n Expressions Guide (for dynamic parameter values)