POST api/fourkites/assets/historydata
Request Information
URI Parameters
None.
Body Parameters
AssetHistoryRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| account_id | string |
None. |
|
| invoice_id | globally unique identifier |
None. |
|
| asset_id | string |
None. |
|
| from | date |
None. |
|
| until | date |
None. |
|
| limit | integer |
None. |
|
| offset | integer |
None. |
|
| type | LoadType |
None. |
|
| dual_type | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"account_id": "sample string 1",
"invoice_id": "7a386284-f33e-4a6f-ae07-d82634f51d5d",
"asset_id": "sample string 3",
"from": "2026-01-23T03:37:15.1564242-06:00",
"until": "2026-01-23T03:37:15.1564242-06:00",
"limit": 1,
"offset": 1,
"type": 0,
"dual_type": true
}
application/xml, text/xml
Sample:
<AssetHistoryRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DTO.Net"> <account_id>sample string 1</account_id> <asset_id>sample string 3</asset_id> <dual_type>true</dual_type> <from>2026-01-23T03:37:15.1564242-06:00</from> <invoice_id>7a386284-f33e-4a6f-ae07-d82634f51d5d</invoice_id> <limit>1</limit> <offset>1</offset> <type>Pickup</type> <until>2026-01-23T03:37:15.1564242-06:00</until> </AssetHistoryRequestDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfAPIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | APIResponse |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.