GET api/GetInventoryCountByUnitTypeDashboard?jsonData={jsonData}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonData | string |
Required |
Body Parameters
None.
Response Information
Resource Description
GetInventoryCountByUnitTypeDashboardResponce| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Count | integer |
None. |
|
| Data | Collection of GetInventoryCountByUnitTypeVm |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Count": 2,
"Data": [
{
"UnitType": "sample string 1",
"Count": 2
},
{
"UnitType": "sample string 1",
"Count": 2
}
]
}
application/xml, text/xml
Sample:
<GetInventoryCountByUnitTypeDashboardResponce xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.PG">
<Count>2</Count>
<Data>
<GetInventoryCountByUnitTypeVm>
<Count>2</Count>
<UnitType>sample string 1</UnitType>
</GetInventoryCountByUnitTypeVm>
<GetInventoryCountByUnitTypeVm>
<Count>2</Count>
<UnitType>sample string 1</UnitType>
</GetInventoryCountByUnitTypeVm>
</Data>
<Success>true</Success>
</GetInventoryCountByUnitTypeDashboardResponce>