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 "Evento" (events). Specifically, for the "Evento" resource and the "Create" operation, it allows users to create a new event in the Imobzi system by providing relevant event details.
Typical use cases include automating event creation workflows such as scheduling appointments, logging meetings, or adding calendar events directly from n8n. For example, after collecting event data from a form or another system, this node can create corresponding events in Imobzi automatically.
Properties
| Name | Meaning |
|---|---|
| Create Fields | A collection of fields describing the event to create. Includes: |
| - Date | Date of the event (string) |
| - Description | Description of the event |
| Email address associated with the event | |
| - Name | Name of the event |
| - Phone | Phone number related to the event |
| - Title | Title of the event |
| - Value | Numeric value associated with the event |
These fields are optional but provide detailed information about the event being created.
Output
The node outputs JSON data representing the newly created event as returned by the Imobzi API. The output structure corresponds to the API's response under the data property, containing all details of the created event.
No binary data output is produced by this operation.
Example output snippet (JSON):
{
"id": 123,
"title": "Meeting with Client",
"date": "2024-06-01T10:00:00Z",
"description": "Discuss contract details",
"email": "client@example.com",
"phone": "+1234567890",
"name": "Client Meeting",
"value": 0
}
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 Imobzi endpoints.
- No additional external dependencies beyond the Imobzi API and its authentication.
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 "evento" is selected for event operations.
- Operation Not Supported: Selecting an unsupported operation for the resource will cause an error. Use only supported operations like "create" for events.
- API Authentication Failures: Errors related to authentication usually mean the API key credential is missing, invalid, or expired. Verify your Imobzi API credentials in n8n.
- Empty or Invalid Field Values: Providing empty or incorrectly formatted fields (e.g., invalid date format) may cause the API to reject the request. Validate input data before execution.
- Network Issues: Connectivity problems with the Imobzi API endpoint will result in request failures. Check network access and API availability.
Links and References
- Imobzi API Documentation (Assumed URL; replace with actual if known)
- n8n Documentation on Credentials
- n8n Expressions Guide