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 detailed information about a specific property category. This operation is useful when you need to fetch metadata or descriptive details about a property category by its unique identifier within your workflow. For example, you might use this node to get category details for filtering properties, generating reports, or enriching data before further processing.
Properties
| Name | Meaning |
|---|---|
| Category ID | The unique numeric identifier of the property category to retrieve |
Output
The output is a JSON object containing the details of the requested property category. This typically includes all relevant fields returned by the Inmobalia CRM API for a property category, such as its name, description, and any other metadata associated with that category.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Inmobalia CRM API.
- Requires an API authentication token configured in n8n credentials (an OAuth2 API credential).
- The node depends on the internal client created via
createClientto communicate with the API.
Troubleshooting
- Common issues:
- Providing an invalid or non-existent Category ID will likely result in an error or empty response.
- Network connectivity problems or expired/invalid API credentials can cause authentication failures.
- Error messages:
Unsupported operation: getCategory— indicates the operation name was not recognized; ensure "Get Category" is selected.- API errors wrapped as
NodeApiErrormay indicate issues like invalid parameters or server-side problems; check the error message for specifics.
- Resolution tips:
- Verify the Category ID is correct and exists in the CRM.
- Ensure the API credentials are valid and have sufficient permissions.
- Check network connectivity and API endpoint availability.
Links and References
- Inmobalia CRM API Documentation (example link, replace with actual if available)
- n8n documentation on creating custom nodes