Actions47
- Booking Actions
- Contact Actions
- Enquiry Actions
- Event Actions
- Location Actions
- Property Actions
- Sale Actions
- User Actions
- Web Lead Actions
Overview
The node interacts with the Inmobalia CRM API to retrieve detailed information about a property using its unique reference identifier. This operation is useful when you have a property's reference code and want to fetch all associated data from the CRM system.
Common scenarios include:
- Automating workflows that require fetching property details based on a known reference.
- Integrating property data into other systems or reports by referencing the unique property code.
- Validating or enriching property information during data processing pipelines.
Example: Given a property reference like "PROP12345", the node fetches all relevant property details such as address, features, categories, and other metadata stored in the CRM.
Properties
| Name | Meaning |
|---|---|
| Reference | The unique string identifier (reference code) of the property to retrieve from the CRM. |
Output
The output is a JSON object containing the full details of the property identified by the provided reference. This includes all available fields and metadata related to the property as returned by the Inmobalia CRM API.
If multiple properties matched (unlikely for a unique reference), each would be output as a separate JSON item, but typically this returns a single property object.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Needs an API authentication token configured in n8n credentials to authorize requests.
- The node uses an internal client created via
createClientto communicate with the API.
Troubleshooting
- Error: Unsupported operation — Ensure the operation is set exactly to "Get by Reference" under the "Property" resource.
- Error: Property not found — Verify the reference string is correct and exists in the CRM.
- Authentication errors — Confirm that the API key or OAuth2 credentials are valid and have sufficient permissions.
- Network issues — Check connectivity to the Inmobalia CRM API endpoint.
Links and References
- Inmobalia CRM API Documentation (example placeholder link)
- n8n documentation on creating custom nodes