GET v1/Clients/{clientId}/TankDelivery?facilityId={facilityId}&startDate={startDate}&endDate={endDate}&startCollectionDateUtc={startCollectionDateUtc}
Gets all tanks' Delivery for a given facility, startDate and endDate are optional.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
| facilityId |
The facility Id. |
integer |
Required |
| startDate |
The start date. |
date |
Required |
| endDate |
The end date. |
date |
Required |
| startCollectionDateUtc |
UTC date time filter that returns records on or after this period. |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
A .
Collection of TankDeliveryV1| 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 delivery id. Provided by service. |
integer |
None. |
| ProductCode |
The product code. |
string |
None. |
| StartDateTime |
The start date and time. |
date |
None. |
| EndDateTime |
The end date and time. |
date |
None. |
| StartVolume |
The start volume. |
decimal number |
None. |
| EndVolume |
The end volume. |
decimal number |
None. |
| StartHeight |
The start height. |
decimal number |
None. |
| EndHeight |
The end height. |
decimal number |
None. |
| StartTemperatureCompensatedVolume |
The start temperature compensated volume. |
decimal number |
None. |
| EndTemperatureCompensatedVolume |
The end temperature compensated volume. |
decimal number |
None. |
| StartWaterHeight |
The start water height. |
decimal number |
None. |
| EndWaterHeight |
The end water height. |
decimal number |
None. |
| StartTemperature |
The start temperature. |
decimal number |
None. |
| EndTemperature |
The end temperature. |
decimal number |
None. |
| StartMass |
The start mass. |
decimal number |
None. |
| EndMass |
The end mass. |
decimal number |
None. |
| StartDensity |
The start density. |
decimal number |
None. |
| EndDensity |
The end density. |
decimal number |
None. |
Response Formats
application/json, text/json
[
{
"FacilityId": 1,
"TankId": 1,
"Id": 1,
"ProductCode": "sample string 1",
"StartDateTime": "2025-12-04T19:37:54.3927894+00:00",
"EndDateTime": "2025-12-04T19:37:54.3927894+00:00",
"StartVolume": 1.1,
"EndVolume": 1.1,
"StartHeight": 1.0,
"EndHeight": 1.0,
"StartTemperatureCompensatedVolume": 1.1,
"EndTemperatureCompensatedVolume": 1.1,
"StartWaterHeight": 1.1,
"EndWaterHeight": 1.1,
"StartTemperature": 1.1,
"EndTemperature": 1.1,
"StartMass": 1.1,
"EndMass": 1.1,
"StartDensity": 1.1,
"EndDensity": 1.1
},
{
"FacilityId": 1,
"TankId": 1,
"Id": 1,
"ProductCode": "sample string 1",
"StartDateTime": "2025-12-04T19:37:54.3927894+00:00",
"EndDateTime": "2025-12-04T19:37:54.3927894+00:00",
"StartVolume": 1.1,
"EndVolume": 1.1,
"StartHeight": 1.0,
"EndHeight": 1.0,
"StartTemperatureCompensatedVolume": 1.1,
"EndTemperatureCompensatedVolume": 1.1,
"StartWaterHeight": 1.1,
"EndWaterHeight": 1.1,
"StartTemperature": 1.1,
"EndTemperature": 1.1,
"StartMass": 1.1,
"EndMass": 1.1,
"StartDensity": 1.1,
"EndDensity": 1.1
}
]
application/xml, text/xml
<ArrayOfTankDelivery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Fuel.Models.Polling">
<TankDelivery>
<EndDateTime>2025-12-04T19:37:54.3927894+00:00</EndDateTime>
<EndDensity>1.1</EndDensity>
<EndHeight>1</EndHeight>
<EndMass>1.1</EndMass>
<EndTemperature>1.1</EndTemperature>
<EndTemperatureCompensatedVolume>1.1</EndTemperatureCompensatedVolume>
<EndVolume>1.1</EndVolume>
<EndWaterHeight>1.1</EndWaterHeight>
<FacilityId>1</FacilityId>
<Id>1</Id>
<ProductCode>sample string 1</ProductCode>
<StartDateTime>2025-12-04T19:37:54.3927894+00:00</StartDateTime>
<StartDensity>1.1</StartDensity>
<StartHeight>1</StartHeight>
<StartMass>1.1</StartMass>
<StartTemperature>1.1</StartTemperature>
<StartTemperatureCompensatedVolume>1.1</StartTemperatureCompensatedVolume>
<StartVolume>1.1</StartVolume>
<StartWaterHeight>1.1</StartWaterHeight>
<TankId>1</TankId>
</TankDelivery>
<TankDelivery>
<EndDateTime>2025-12-04T19:37:54.3927894+00:00</EndDateTime>
<EndDensity>1.1</EndDensity>
<EndHeight>1</EndHeight>
<EndMass>1.1</EndMass>
<EndTemperature>1.1</EndTemperature>
<EndTemperatureCompensatedVolume>1.1</EndTemperatureCompensatedVolume>
<EndVolume>1.1</EndVolume>
<EndWaterHeight>1.1</EndWaterHeight>
<FacilityId>1</FacilityId>
<Id>1</Id>
<ProductCode>sample string 1</ProductCode>
<StartDateTime>2025-12-04T19:37:54.3927894+00:00</StartDateTime>
<StartDensity>1.1</StartDensity>
<StartHeight>1</StartHeight>
<StartMass>1.1</StartMass>
<StartTemperature>1.1</StartTemperature>
<StartTemperatureCompensatedVolume>1.1</StartTemperatureCompensatedVolume>
<StartVolume>1.1</StartVolume>
<StartWaterHeight>1.1</StartWaterHeight>
<TankId>1</TankId>
</TankDelivery>
</ArrayOfTankDelivery>