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 interact with various resources, including properties. Specifically, for the "Property" resource and the "List Images" operation, it retrieves a list of images associated with a given property. This is useful in real estate or property management scenarios where users want to fetch all images related to a specific property for display, processing, or further automation.
For example, a user might use this node to automatically gather all images of a property to generate marketing materials or to sync property images with another system.
Properties
| Name | Meaning |
|---|---|
| Property ID | The unique numeric identifier of the property whose images you want to list (e.g., 12345) |
Output
The output is an array of JSON objects, each representing an image associated with the specified property. Each item in the output contains metadata about one image, such as URLs, descriptions, or identifiers, depending on what the Inmobalia CRM API returns for property images.
If the node supports binary data for images (not explicitly shown in the code), it would typically provide the image content in a binary field; however, based on the static analysis, the output here is JSON metadata only.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Requires an API authentication token configured via OAuth2 credentials within n8n.
- The node uses an internal client created by
createClientto communicate with the API.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Property ID will likely result in an error or empty results.
- Network or authentication failures can cause API request errors.
- Using unsupported operations or resources will throw errors indicating unsupported operation/resource.
Error messages:
"Unsupported operation: listImages"if the operation name is misspelled or not supported."Unsupported resource: properties"if the resource name is incorrect.- API errors wrapped as
NodeApiErrormay indicate issues like invalid credentials, rate limits, or server errors.
Resolutions:
- Verify that the Property ID is correct and exists in the CRM.
- Ensure the OAuth2 credentials are properly set up and valid.
- Double-check the selected Resource and Operation names in the node configuration.
Links and References
- Inmobalia CRM API Documentation (hypothetical link, replace with actual if available)
- n8n OAuth2 Credential Setup
- n8n Node Development Guide