GET api/GetInventoryCountByUnitTypeDashboard

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GetInventoryCountByUnitTypeDashboardResponce
NameDescriptionTypeAdditional 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>