GET api/assetDashboard/usageForDay?warehouseID={warehouseID}&startDate={startDate}&intSize={intSize}
Get a usage count for warehouse
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| warehouseID | integer |
Required |
|
| startDate | string |
Required |
|
| intSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AssetUsage| Name | Description | Type | Additional information |
|---|---|---|---|
| PointInTime | date |
None. |
|
| ActiveCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PointInTime": "2025-12-06T23:37:47.0041594+00:00",
"ActiveCount": 2
},
{
"PointInTime": "2025-12-06T23:37:47.0041594+00:00",
"ActiveCount": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfAssetUsage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<AssetUsage>
<ActiveCount>2</ActiveCount>
<PointInTime>2025-12-06T23:37:47.0041594+00:00</PointInTime>
</AssetUsage>
<AssetUsage>
<ActiveCount>2</ActiveCount>
<PointInTime>2025-12-06T23:37:47.0041594+00:00</PointInTime>
</AssetUsage>
</ArrayOfAssetUsage>