Actions47
- Booking Actions
- Contact Actions
- Enquiry Actions
- Event Actions
- Location Actions
- Property Actions
- Sale Actions
- User Actions
- Web Lead Actions
Overview
This node integrates with the Inmobalia CRM API to retrieve detailed information about real estate properties. Specifically, the "Property - Get" operation fetches data for a single property identified by its unique Property ID. This is useful in scenarios where you need to obtain comprehensive details about a specific property, such as its features, location, pricing, and other metadata stored in the CRM.
Practical examples include:
- Fetching property details to display on a website or app.
- Using property data to automate workflows like sending notifications or generating reports.
- Integrating property information into other systems for analysis or marketing.
Properties
| Name | Meaning |
|---|---|
| Property ID | The unique numeric identifier of the property to retrieve (e.g., 12345). This is required. |
Output
The node outputs a JSON object representing the full details of the requested property. The structure includes all available fields returned by the Inmobalia CRM API for that property, which may encompass attributes such as address, price, features, categories, images, descriptions, and related metadata.
If the node supports fetching files or images related to the property (in other operations), those would be output separately, but for the "Get" operation, the output is purely JSON data describing the property.
Dependencies
- Requires an active connection to the Inmobalia CRM API via an OAuth2 API credential configured in n8n.
- The node depends on the Inmobalia CRM service being accessible and the provided Property ID being valid within that system.
Troubleshooting
- Invalid Property ID: If the Property ID does not exist or is incorrect, the node will likely throw an error indicating the resource was not found. Verify the ID before running.
- Authentication Errors: Ensure the OAuth2 credentials are correctly set up and have sufficient permissions to access property data.
- Unsupported Operation or Resource: The node throws errors if an unsupported operation or resource is specified; ensure "properties" resource and "get" operation are selected.
- API Rate Limits or Connectivity Issues: Network problems or API rate limits can cause failures; check connectivity and API usage quotas.
Links and References
- Inmobalia CRM API Documentation (example link, replace with actual)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- n8n Node Development Documentation: https://docs.n8n.io/integrations/creating-nodes/