GET v1/Clients/{clientId}/TankInventoryHistory?facilityId={facilityId}&tankId={tankId}&collectionDateUtc={collectionDateUtc}
Get a specific tank's inventory history
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
| facilityId |
The facility Id. |
integer |
Required |
| tankId |
The facility Id. |
integer |
Required |
| collectionDateUtc |
Date is based on UTC, returning data for 24 hour period (if user request 4/20/22, user would get all records occurring on 4/20/22 in UTC time). |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
A .
Collection of TankInventoryV1| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityId |
The facility id. Provided by service. |
integer |
None. |
| TankId |
The tank id. Provided by service. |
integer |
None. |
| Id |
The inventory id. Provided by service. |
integer |
None. |
| InventoryDate |
The InventoryDate. |
date |
None. |
| CollectionDateTimeUtc |
The Collection Date Time Utc. |
date |
None. |
| ProductCode |
The product code. |
string |
None. |
| TankStatus |
The Tank Status. |
string |
None. |
| Volume |
The Volume. |
decimal number |
None. |
| TCVolume |
The Volume. |
decimal number |
None. |
| Height |
The Height. |
decimal number |
None. |
| Water |
The Water. |
decimal number |
None. |
| Ullage |
The Ullage. |
decimal number |
None. |
| Temperature |
The Temperature. |
decimal number |
None. |
| WaterVolume |
The Safe Ullage. |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FacilityId": 1,
"TankId": 2,
"Id": 3,
"InventoryDate": "2025-12-04T19:39:33.3491321+00:00",
"CollectionDateTimeUtc": "2025-12-04T19:39:33.3491321+00:00",
"ProductCode": "sample string 4",
"TankStatus": "sample string 5",
"Volume": 1.1,
"TCVolume": 1.1,
"Height": 1.1,
"Water": 1.1,
"Ullage": 1.1,
"Temperature": 1.1,
"WaterVolume": 1.1
},
{
"FacilityId": 1,
"TankId": 2,
"Id": 3,
"InventoryDate": "2025-12-04T19:39:33.3491321+00:00",
"CollectionDateTimeUtc": "2025-12-04T19:39:33.3491321+00:00",
"ProductCode": "sample string 4",
"TankStatus": "sample string 5",
"Volume": 1.1,
"TCVolume": 1.1,
"Height": 1.1,
"Water": 1.1,
"Ullage": 1.1,
"Temperature": 1.1,
"WaterVolume": 1.1
}
]
application/xml, text/xml
Sample:
<ArrayOfTankInventory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Fuel.Models.Polling">
<TankInventory>
<CollectionDateTimeUtc>2025-12-04T19:39:33.3491321+00:00</CollectionDateTimeUtc>
<FacilityId>1</FacilityId>
<Height>1.1</Height>
<Id>3</Id>
<InventoryDate>2025-12-04T19:39:33.3491321+00:00</InventoryDate>
<ProductCode>sample string 4</ProductCode>
<TCVolume>1.1</TCVolume>
<TankId>2</TankId>
<TankStatus>sample string 5</TankStatus>
<Temperature>1.1</Temperature>
<Ullage>1.1</Ullage>
<Volume>1.1</Volume>
<Water>1.1</Water>
<WaterVolume>1.1</WaterVolume>
</TankInventory>
<TankInventory>
<CollectionDateTimeUtc>2025-12-04T19:39:33.3491321+00:00</CollectionDateTimeUtc>
<FacilityId>1</FacilityId>
<Height>1.1</Height>
<Id>3</Id>
<InventoryDate>2025-12-04T19:39:33.3491321+00:00</InventoryDate>
<ProductCode>sample string 4</ProductCode>
<TCVolume>1.1</TCVolume>
<TankId>2</TankId>
<TankStatus>sample string 5</TankStatus>
<Temperature>1.1</Temperature>
<Ullage>1.1</Ullage>
<Volume>1.1</Volume>
<Water>1.1</Water>
<WaterVolume>1.1</WaterVolume>
</TankInventory>
</ArrayOfTankInventory>