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 a specific file associated with a property. This operation is useful when you need to access documents, images, or other files linked to a particular property record within the CRM system. For example, real estate agents or property managers can use this node to fetch floor plans, contracts, or promotional materials stored in the CRM for a given property.
Properties
| Name | Meaning |
|---|---|
| Property ID | The unique identifier of the property from which the file will be retrieved (e.g., 12345). |
| File ID | The unique identifier of the file to retrieve from the specified property. |
Output
The output contains a JSON object representing the requested file's data as returned by the Inmobalia CRM API. This typically includes metadata about the file such as its name, type, size, and possibly a URL or binary content reference depending on the API response. The exact structure depends on the API but generally provides all necessary information to access or download the file.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Requires an API authentication token configured via OAuth2 credentials in n8n.
- No additional external dependencies are needed beyond the configured API client.
Troubleshooting
- Common issues:
- Invalid or missing Property ID or File ID parameters will cause errors.
- Authentication failures if the API token is expired or misconfigured.
- File not found errors if the specified file does not exist for the given property.
- Error messages:
Unsupported operationorUnsupported resourceindicates incorrect resource or operation selection.- API errors wrapped as
NodeApiErrormay include HTTP status codes and messages from the CRM API; check credentials and parameter correctness.
- Resolutions:
- Verify that both Property ID and File ID are correctly provided and correspond to existing records.
- Ensure the OAuth2 credential is valid and has sufficient permissions.
- Confirm network connectivity to the Inmobalia CRM API endpoint.
Links and References
- Inmobalia CRM API Documentation (example link, replace with actual)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/