GET api/Products/{clientid}/{id}
Returns a list of products in a provided subcategory
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientid | integer |
Required |
|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProductInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| product_id |
Product Id |
integer |
None. |
| product_name |
Product Name |
string |
None. |
| product_sku_list |
List of product SKUs |
Collection of ProductSkuInfo |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"product_id": 1,
"product_name": "sample string 2",
"product_sku_list": [
{
"sku": "sample string 1",
"sku_name": "sample string 2"
},
{
"sku": "sample string 1",
"sku_name": "sample string 2"
}
]
},
{
"product_id": 1,
"product_name": "sample string 2",
"product_sku_list": [
{
"sku": "sample string 1",
"sku_name": "sample string 2"
},
{
"sku": "sample string 1",
"sku_name": "sample string 2"
}
]
}
]