GET api/audResidential/stats?WarehouseID={WarehouseID}&fromDate={fromDate}&toDate={toDate}

Returns residential stats by and date range

Request Information

URI Parameters

NameDescriptionTypeAdditional information
WarehouseID

integer

Required

fromDate

The beginning of the date range to view

date

Required

toDate

The end of the date range to view

date

Required

Body Parameters

None.

Response Information

Resource Description

audResidentialStats
NameDescriptionTypeAdditional information
ShipResAuditRes

integer

None.

ShipResAuditCom

integer

None.

ShipComAuditRes

integer

None.

ShipComAuditCom

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ShipResAuditRes": 1,
  "ShipResAuditCom": 2,
  "ShipComAuditRes": 3,
  "ShipComAuditCom": 4
}

application/xml, text/xml

Sample:
<audResidentialStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <ShipComAuditCom>4</ShipComAuditCom>
  <ShipComAuditRes>3</ShipComAuditRes>
  <ShipResAuditCom>2</ShipResAuditCom>
  <ShipResAuditRes>1</ShipResAuditRes>
</audResidentialStats>