Actions47
- Booking Actions
- Contact Actions
- Enquiry Actions
- Event Actions
- Location Actions
- Property Actions
- Sale Actions
- User Actions
- Web Lead Actions
Overview
This node interacts with the Inmobalia CRM API to retrieve detailed information about property images. Specifically, the "Get Image" operation under the "Property" resource fetches a single image associated with a given property by its identifiers.
Common scenarios where this node is beneficial include:
- Real estate agencies or property managers wanting to automate retrieval of specific property images for listings.
- Integrations that require displaying or processing property images dynamically based on user input or workflow conditions.
- Systems that need to synchronize or archive property images from the CRM into other platforms.
For example, you could use this node in an automation to fetch a particular image of a property when a new inquiry arrives, then send that image via email or upload it to a website.
Properties
| Name | Meaning |
|---|---|
| Property ID | The unique numeric identifier of the property whose image you want to retrieve. |
| Image ID | The unique numeric identifier of the specific image associated with the property. |
Both properties are required inputs to specify exactly which property's image should be fetched.
Output
The output is a JSON object representing the requested property image's data as returned by the Inmobalia CRM API. This typically includes metadata and possibly URLs or encoded data related to the image.
If the node supports binary data output (not explicitly shown in the code), it would represent the actual image file content. However, based on the static analysis, the output is provided as JSON containing image details.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Needs valid API authentication credentials configured in n8n (an OAuth2 API credential).
- The node uses an internal client created via
createClientto communicate with the API.
Troubleshooting
- Unsupported Operation Error: If you select an operation not supported under the "Property" resource, the node will throw an error indicating the operation is unsupported. Ensure you select "Get Image" for this use case.
- API Errors: Network issues, invalid credentials, or incorrect IDs may cause API errors. Verify your API key and that the Property ID and Image ID exist and are correct.
- Empty Output: If no image matches the provided IDs, the output may be empty or null. Double-check the IDs and ensure the image exists in the CRM.
Links and References
- Inmobalia CRM API Documentation (example placeholder, replace with actual URL)
- n8n Documentation on Creating Custom Nodes
- OAuth2 Authentication setup in n8n: OAuth2 Credentials