Actions15
Overview
The "Get All" operation of the Product resource in this custom n8n node allows users to retrieve a list of products from an inventory management system. This functionality is particularly useful for businesses that need to manage their product catalog, perform inventory audits, or integrate product data into other systems. Common scenarios include generating reports on available products, syncing product information with e-commerce platforms, or filtering products based on specific criteria such as group or modification date.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all results or only up to a given limit. |
| Limit | Max number of results to return (1 to 100). Default is 50. |
| Filters | Collection of filters to apply when retrieving products: |
| - Product Group: Filter products by product group. | |
| - Search Term: Search term to filter products (searches in code, description, etc.). | |
| - Last Modified Since: Filter products modified since a specified date/time. |
Output
The output of the "Get All" operation will be structured as an array of JSON objects, where each object represents a product retrieved from the inventory. The exact structure of each product object will depend on the API response but typically includes fields such as product ID, name, description, price, and stock level. If the node can output binary data, it would generally represent files or images associated with the products.
Dependencies
- An API key credential is required to authenticate requests to the inventory management system.
- The node relies on the Unleashed inventory management API for fetching product data.
Troubleshooting
Common Issues:
- Users may encounter issues if the API key is invalid or expired, leading to authentication errors.
- If the specified filters do not match any products, the output may be empty.
Error Messages:
- "Authentication failed": Ensure that the API key is correctly configured and has the necessary permissions.
- "No products found": Check the applied filters and ensure they are set correctly. Adjust the search terms or remove filters to broaden the search.
Links and References
- Unleashed API Documentation - Official documentation for the Unleashed API, providing details on endpoints and usage.
- n8n Documentation - General documentation for n8n, including how to create and manage nodes.