GET retail_services/ProductList?ItemGroupId={ItemGroupId}&WarehouseId={WarehouseId}
GET method. Require Basic Authentication. This method returns all the products available for a particular ItemGroup or Warehouse.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| ItemGroupId | Optional parameter. |
Define this parameter in the request URI. |
| WarehouseId | Required parameter. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"ProductID": 1,
"ProductDescription": "sample string 2",
"ItemCost": 3.0,
"IsTaxInclusive": true,
"TaxPercentage": 5.0
},
{
"ProductID": 1,
"ProductDescription": "sample string 2",
"ItemCost": 3.0,
"IsTaxInclusive": true,
"TaxPercentage": 5.0
},
{
"ProductID": 1,
"ProductDescription": "sample string 2",
"ItemCost": 3.0,
"IsTaxInclusive": true,
"TaxPercentage": 5.0
}
]