GET api/invoice/stock/{ShopID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StockShopWiseCategoryWise| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopName | string |
None. |
|
| CategoryName | string |
None. |
|
| StockAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ShopName": "sample string 1",
"CategoryName": "sample string 2",
"StockAmount": 3.1
},
{
"ShopName": "sample string 1",
"CategoryName": "sample string 2",
"StockAmount": 3.1
}
]
application/xml, text/xml
Sample:
<ArrayOfStockShopWiseCategoryWise xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<StockShopWiseCategoryWise>
<CategoryName>sample string 2</CategoryName>
<ShopName>sample string 1</ShopName>
<StockAmount>3.1</StockAmount>
</StockShopWiseCategoryWise>
<StockShopWiseCategoryWise>
<CategoryName>sample string 2</CategoryName>
<ShopName>sample string 1</ShopName>
<StockAmount>3.1</StockAmount>
</StockShopWiseCategoryWise>
</ArrayOfStockShopWiseCategoryWise>