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, allowing users to perform various operations on different resources within the Imobzi platform. Specifically for the Integracao (Integration) resource with the Get operation, the node retrieves a single integration item by its name or ID. This is useful when you want to fetch detailed information about a specific integration configured in your Imobzi account.
Common scenarios include:
- Retrieving configuration details of an existing integration.
- Using the integration data as part of an automation workflow to trigger other actions.
- Validating or auditing integration settings programmatically.
Example: You might use this node to get the details of a particular integration by selecting it from a dropdown list or specifying its ID dynamically, then use that data downstream in your workflow.
Properties
| Name | Meaning |
|---|---|
Integration Name or ID (id) |
Select an integration from a list loaded dynamically from your Imobzi account or specify an ID manually. This identifies which integration to retrieve. |
Output
The output contains a JSON object representing the requested integration's data as returned by the Imobzi API. The structure corresponds directly to the API response for a single integration item and includes all available fields describing that integration.
- The output is under the
jsonproperty. - No binary data is produced by this operation.
Example output snippet (structure depends on API but typically includes fields like id, name, status, etc.):
{
"id": "123",
"name": "My Integration",
"status": "active",
...
}
Dependencies
- Requires an active connection to the Imobzi API via an API key credential configured in n8n.
- The node uses authenticated HTTP requests to communicate with the Imobzi API.
- The user must have appropriate permissions in Imobzi to access integration data.
Troubleshooting
Error: Resource "integracao" not supported!
This indicates a misconfiguration or typo in the resource parameter. Ensure the resource is set exactly to "integracao".Error: Operation "get" not supported!
This suggests the operation parameter is incorrect or unsupported. Confirm the operation is set to "get".API Authentication Errors
If authentication fails, verify that the API key credential is correctly set up and has sufficient permissions.No Data Returned
If no integration matches the selected ID, check that the ID is correct and that the integration exists in your Imobzi account.Continue On Fail Behavior
If enabled, errors for individual items will be returned as JSON with anerrorfield instead of stopping execution.
Links and References
- Imobzi API Documentation (general reference for API endpoints and data structures)
- n8n Expressions Documentation (for using expressions to specify IDs dynamically)