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 sale record. When configured for the "Sale" resource and the "Get" operation, it fetches data for a single sale identified by its unique Sale ID.
Common scenarios where this node is beneficial include:
- Automating workflows that require fetching sales details for reporting or further processing.
- Integrating sales data into other systems or dashboards.
- Triggering actions based on specific sale information retrieved from the CRM.
For example, you might use this node to get the details of a sale after a customer completes a purchase, then use that data to update inventory or notify a sales team.
Properties
| Name | Meaning |
|---|---|
| Sale ID | The unique numeric identifier of the sale to retrieve (e.g., 12345). This property is required to specify which sale record to fetch. |
Output
The node outputs an array containing one item with a json field. This json field holds the detailed information of the requested sale as returned by the Inmobalia CRM API. The structure typically includes all relevant sale attributes such as sale date, amount, associated customer, status, and any other metadata provided by the CRM.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Needs an API authentication token configured in n8n credentials (an OAuth2 API credential).
- The node depends on the internal client library to communicate with the API.
Troubleshooting
Error: Unsupported operation or resource
Ensure that the Resource is set to "Sale" and Operation to "Get". Other combinations are not supported by this node implementation.Error: Missing or invalid Sale ID
The Sale ID must be provided and be a valid number. Double-check the input parameter.API errors (e.g., authentication failure, network issues)
Verify that the API credentials are correctly configured and have sufficient permissions. Check network connectivity to the Inmobalia CRM service.Empty or unexpected response
Confirm that the Sale ID exists in the CRM system. If the sale does not exist, the API may return an error or empty data.
Links and References
- Inmobalia CRM API Documentation (example link; replace with actual if available)
- n8n documentation on creating custom nodes