POST API/JobTrak/GetTradeAssetLifts
Get trade asset lifts
Request Information
URI Parameters
None.
Body Parameters
Date range
TimeRange| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate |
Start Date |
date |
Required |
| EndDate |
End Date |
date |
Required |
Request Formats
application/json, text/json
Sample:
{
"StartDate": "2025-10-30T21:52:23.5785077+00:00",
"EndDate": "2025-10-30T21:52:23.5785077+00:00"
}
application/xml, text/xml
Sample:
<TimeRange xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <StartDate>2025-10-30T21:52:23.5785077+00:00</StartDate> <EndDate>2025-10-30T21:52:23.5785077+00:00</EndDate> </TimeRange>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
List of trade lifts and their weights
Collection of TradeAssetLift| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyName |
Name of associated location |
string |
None. |
| PropertyCode |
Property code of associated location |
string |
None. |
| PostCode |
Postcode of associated location |
string |
None. |
| AssetType |
Asset type lifted |
string |
None. |
| AssetTag |
Tag of lifted asset |
string |
None. |
| LiftWeight |
Weight of Lift |
integer |
None. |
| LiftComment |
Additional lift information |
string |
None. |
| Vehicle |
Lifting vehicle |
string |
None. |
| TimeStamp |
Date/Time of lift |
date |
None. |
| Location |
Lat/Long coordinates of the weight lift |
LatLng |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PropertyName": "sample string 1",
"PropertyCode": "sample string 2",
"PostCode": "sample string 3",
"AssetType": "sample string 4",
"AssetTag": "sample string 5",
"LiftWeight": 6,
"LiftComment": "sample string 7",
"Vehicle": "sample string 8",
"TimeStamp": "2025-10-30T21:52:23.5834685+00:00",
"Location": {
"Latitude": 1.0,
"Longitude": 2.0,
"IsValid": true
}
},
{
"PropertyName": "sample string 1",
"PropertyCode": "sample string 2",
"PostCode": "sample string 3",
"AssetType": "sample string 4",
"AssetTag": "sample string 5",
"LiftWeight": 6,
"LiftComment": "sample string 7",
"Vehicle": "sample string 8",
"TimeStamp": "2025-10-30T21:52:23.5834685+00:00",
"Location": {
"Latitude": 1.0,
"Longitude": 2.0,
"IsValid": true
}
}
]
application/xml, text/xml
Sample:
<ArrayOfTradeAssetLift xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<TradeAssetLift>
<PropertyName>sample string 1</PropertyName>
<PropertyCode>sample string 2</PropertyCode>
<PostCode>sample string 3</PostCode>
<AssetType>sample string 4</AssetType>
<AssetTag>sample string 5</AssetTag>
<LiftWeight>6</LiftWeight>
<LiftComment>sample string 7</LiftComment>
<Vehicle>sample string 8</Vehicle>
<TimeStamp>2025-10-30T21:52:23.5834685+00:00</TimeStamp>
<Location>
<Latitude>1</Latitude>
<Longitude>2</Longitude>
</Location>
</TradeAssetLift>
<TradeAssetLift>
<PropertyName>sample string 1</PropertyName>
<PropertyCode>sample string 2</PropertyCode>
<PostCode>sample string 3</PostCode>
<AssetType>sample string 4</AssetType>
<AssetTag>sample string 5</AssetTag>
<LiftWeight>6</LiftWeight>
<LiftComment>sample string 7</LiftComment>
<Vehicle>sample string 8</Vehicle>
<TimeStamp>2025-10-30T21:52:23.5834685+00:00</TimeStamp>
<Location>
<Latitude>1</Latitude>
<Longitude>2</Longitude>
</Location>
</TradeAssetLift>
</ArrayOfTradeAssetLift>