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 a specific enquiry. The "Get Enquiry" operation allows users to fetch data for a single enquiry by providing its unique identifier. This is useful in scenarios where you want to automate workflows that depend on enquiry details, such as follow-up communications, reporting, or syncing enquiry data with other systems.
Practical examples:
- Automatically retrieving enquiry details when a new enquiry is created to trigger personalized email responses.
- Fetching enquiry information to update a customer support dashboard.
- Integrating enquiry data into a marketing automation platform for targeted campaigns.
Properties
| Name | Meaning |
|---|---|
| Enquiry ID | The unique numeric identifier of the enquiry to retrieve (e.g., 12345). This property is required to specify which enquiry's details to fetch. |
Output
The node outputs an array containing one item with a json field. This json field holds the detailed data of the requested enquiry as returned by the Inmobalia CRM API. The structure typically includes all relevant enquiry attributes such as contact information, enquiry status, timestamps, and any custom fields defined in the CRM.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Requires configuration of an OAuth2 API credential within n8n to authenticate requests.
- The node depends on the internal client library (
createClient) to communicate with the API.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Enquiry ID will likely result in an error or empty response.
- Missing or misconfigured API credentials will cause authentication failures.
- Network connectivity problems can prevent successful API calls.
Error messages:
"Unsupported operation: get"or"Unsupported resource: enquiries"indicate incorrect resource or operation selection.- API errors wrapped as
NodeApiErrormay include HTTP status codes and messages from the Inmobalia CRM API; check the message for details.
Resolutions:
- Verify the Enquiry ID is correct and exists in the CRM.
- Ensure the OAuth2 credentials are properly set up and authorized.
- Check network access and proxy settings if applicable.
Links and References
- Inmobalia CRM API Documentation (example placeholder, replace with actual URL if available)
- n8n OAuth2 Credential Setup Guide
- n8n Node Development Documentation