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": "cd0e6e74-e699-4deb-b627-eed959101eca",
"asset_id": "sample string 3",
"from": "2025-12-11T19:50:17.1021962-06:00",
"until": "2025-12-11T19:50:17.1021962-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>2025-12-11T19:50:17.1021962-06:00</from> <invoice_id>cd0e6e74-e699-4deb-b627-eed959101eca</invoice_id> <limit>1</limit> <offset>1</offset> <type>Pickup</type> <until>2025-12-11T19:50:17.1021962-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.