Shopify Get Products
Gets a list of shopify products.
Uses this endpoint behind the scenes: https://shopify.dev/docs/api/admin-rest/2024-04/resources/product#get-products?ids=632910392,921728736
Filter and Filter Value should be used together. Allows you to filter out the products by 1 String field.
Filter options: 'collection_id', 'ids', 'handle', 'product_type', 'since_id', 'title', 'vendor'
Status Value is used to sort between 'active', 'archived', 'draft'
products.
Limit is used to limit the number of products retrieved. Default is 50, max is 250.
Inputs
Name | Type | Description |
---|---|---|
Shopify Token | SensitiveString | Shopify API Token. |
Shopify Domain | String | Shopify Domain. |
Filter | Optional String | Parameter Used to Filter Out the Products. |
Filter Value | Optional String | Value of the filter. This is a string so a field with multiple values such as ids can be used by passing a string of values separated by a comma. |
Status Value | Optional String | If present, will only return products with this status. |
Limit | Optional String | Limit the number of products returned. Default is 50, max is 250. |
Outputs
Name | Type | Description |
---|---|---|
Success | Boolean | Whether product list was retrieved successfully. |
Products | List | List of products retrieved by the call. |
Updated 5 months ago