Skip to content

Commit 5f8d961

Browse files
authored
Merge pull request #256 from woocommerce/add/new-product-list-params
Add docs for `/products` endpoint new parameters
2 parents df4d563 + 9afb2bb commit 5f8d961

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

source/includes/wp-api-v3/_products.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,11 @@ woocommerce.get("products").parsed_response
14811481
| `parent_exclude` | array | Limit result set to all items except those of a particular parent ID. |
14821482
| `slug` | string | Limit result set to products with a specific slug. |
14831483
| `status` | string | Limit result set to products assigned a specific status. Options: `any`, `draft`, `pending`, `private` and `publish`. Default is `any`. |
1484-
| `type` | string | Limit result set to products assigned a specific type. Options: `simple`, `grouped`, `external` and `variable`. |
1484+
| `include_status` | string | Limit result set to products with any of the specified statuses. Multiple statuses can be provided as a comma-separated list. Takes precedence over the `status` parameter. Options: `any`, `future`, `trash`, `draft`, `pending`, `private`, and `publish`.|
1485+
| `exclude_status` | string | Exclude products from result set with any of the specified statuses. Multiple statuses can be provided as a comma-separated list. Takes precedence over the `include_status` parameter. Options: `future`, `trash`, `draft`, `pending`, `private`, and `publish`.|
1486+
| `type` | string | Limit result set to products assigned a specific type. Options: `simple`, `grouped`, `external` and `variable`. |
1487+
| `include_types` | string | Limit result set to products with any of the types. Multiple statuses can be provided as a comma-separated list. Takes precedence over the `type` parameter. Options: `simple`, `grouped`, `external` and `variable`. |
1488+
| `exclude_types` | string | Exclude products from result set with any of the specified types. Multiple statuses can be provided as a comma-separated list. Takes precedence over the `include_types` parameter. Options: `simple`, `grouped`, `external` and `variable`. |
14851489
| `sku` | string | Limit result set to products with a specific SKU. |
14861490
| `featured` | boolean | Limit result set to featured products. |
14871491
| `category` | string | Limit result set to products assigned a specific category ID. |
@@ -1494,6 +1498,8 @@ woocommerce.get("products").parsed_response
14941498
| `min_price` | string | Limit result set to products based on a minimum price. |
14951499
| `max_price` | string | Limit result set to products based on a maximum price. |
14961500
| `stock_status` | string | Limit result set to products with specified stock status. Options: `instock`, `outofstock` and `onbackorder`. |
1501+
| `virtual` | boolean | Limit result set to virtual products. |
1502+
| `downloadable` | boolean | Limit result set to downloadable products. |
14971503

14981504
## Duplicate product ##
14991505

0 commit comments

Comments
 (0)