POST api/fourkites/assets/historydata

Request Information

URI Parameters

None.

Body Parameters

AssetHistoryRequestDTO
NameDescriptionTypeAdditional 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": "5f0e8c15-81d7-4daf-a0ce-4a02c9e97d94",
  "asset_id": "sample string 3",
  "from": "2024-09-19T10:25:22.5348357-05:00",
  "until": "2024-09-19T10:25:22.5348357-05: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">
  <account_id>sample string 1</account_id>
  <asset_id>sample string 3</asset_id>
  <dual_type>true</dual_type>
  <from>2024-09-19T10:25:22.5348357-05:00</from>
  <invoice_id>5f0e8c15-81d7-4daf-a0ce-4a02c9e97d94</invoice_id>
  <limit>1</limit>
  <offset>1</offset>
  <type>Pickup</type>
  <until>2024-09-19T10:25:22.5348357-05:00</until>
</AssetHistoryRequestDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultOfAPIResponse
NameDescriptionTypeAdditional information
Content

APIResponse

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.