POST API/JobTrak/GetTradeAssetLifts
Get trade asset lifts
Request Information
URI Parameters
None.
Body Parameters
Date range
TimeRangeName | Description | Type | Additional information |
---|---|---|---|
StartDate |
Start Date |
date |
Required |
EndDate |
End Date |
date |
Required |
Request Formats
application/json, text/json
Sample:
{ "StartDate": "2025-04-29T18:47:47.2297924+01:00", "EndDate": "2025-04-29T18:47:47.2297924+01: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-04-29T18:47:47.2297924+01:00</StartDate> <EndDate>2025-04-29T18:47:47.2297924+01:00</EndDate> </TimeRange>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
List of trade lifts and their weights
Collection of TradeAssetLiftName | 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. |
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-04-29T18:47:47.2347359+01:00" }, { "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-04-29T18:47:47.2347359+01:00" } ]
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-04-29T18:47:47.2347359+01:00</TimeStamp> </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-04-29T18:47:47.2347359+01:00</TimeStamp> </TradeAssetLift> </ArrayOfTradeAssetLift>