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 perform various operations related to real estate properties. Specifically, for the "Property" resource and the "List Links" operation, it retrieves a list of links associated with a given property. This can be useful in scenarios where you want to gather all relevant URLs or references connected to a property, such as virtual tours, external listings, or related documents.
Practical examples include:
- Fetching all marketing or informational links tied to a property to display on a website.
- Aggregating external resources linked to a property for reporting or analysis.
- Automating workflows that require access to property-related URLs.
Properties
| Name | Meaning |
|---|---|
| Property ID | The unique numeric identifier of the property whose links you want to list (e.g., 12345) |
Output
The output is an array of JSON objects, each representing a link associated with the specified property. Each object contains details about a single link, such as its URL, description, or other metadata provided by the Inmobalia CRM API.
No binary data output is involved in this operation.
Example output structure (simplified):
[
{
"url": "https://example.com/property-tour",
"description": "Virtual tour of the property"
},
{
"url": "https://external-listing.com/property12345",
"description": "External listing page"
}
]
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Needs valid API authentication credentials configured in n8n (an OAuth2 API credential).
- The node depends on the internal client created via
createClientto communicate with the API.
Troubleshooting
Common issues:
- Invalid or missing Property ID: Ensure the Property ID is provided and corresponds to an existing property.
- Authentication errors: Verify that the API credentials are correctly set up and have sufficient permissions.
- Network or API downtime: Check connectivity and the status of the Inmobalia CRM service.
Error messages:
"Unsupported operation: listLinks": This indicates the operation name might be misspelled or not supported for the selected resource.- API errors wrapped as
NodeApiError: These usually contain the original API error message; review the message for details like invalid parameters or permission issues.
Links and References
- Inmobalia CRM API Documentation (hypothetical link)
- n8n documentation on Creating Custom Nodes
- OAuth2 Credential Setup in n8n: OAuth2 Credentials