[OPTIONAL] Load and Unload Times
Fixed Locations have the ability to accept location specific load and unload times in order to more accurately enhance the overall dwell time that is anticipated for that location. To add this optional value, use the parameters below:
IsLoadFlag | This allows you to set both load and unload times. True = Load, False = Unload |
PieceUnit | This is the unit type that the unload or load time is for. See here for valid types |
loadTimeMinutes | This is the number of minutes it takes to load or unload the specified PieceUnit. This is set to a maximum of 1,440 (24 hours) |
Sample Fixed Location object with load and unload times:
{
"FixedLocationName": "Load and Unload Times Example",
"FixedLocationCode" : "LOADANDUNLOAD",
"FixedLocationPoint" :
{
"Latitude": 50.1234,
"Longitude": -45.5432
},
"FixedLocationType":"1",
"LoadTimes":
[
{
"IsLoadFlag":false,
"PieceUnit":"Pallet",
"loadTimeMinutes":"15"
},
{
"IsLoadFlag":true,
"PieceUnit":"Box",
"loadTimeMinutes":"10"
}
]
}
Here is a success response:
{
"fixedLocationType": "Generic",
"fixedLocationName": "Load and Unload Times Example",
"streetAddressLine1": "NL-1",
"streetAddressLine2": null,
"cityName": "Raleigh",
"stateCode": "NL",
"postalCode": null,
"countryCode": "CA",
"fixedLocationPoint": {
"latitude": 50.1234,
"longitude": -45.5432
},
"fixedLocationCode": "LOADANDUNLOAD",
"organizationReferenceCode": null,
"overrideDeliveryStatusFlag": false,
"geofenceRadiusInFeet": null,
"earlyShipmentStatusMinutes": null,
"onTimeShipmentStatusMinutes": null,
"inJeopardyShipmentStatusMinutes": null,
"lateShipmentStatusMinutes": null,
"hasEarlyStatusDefined": false,
"hasInJeopardyStatusDefined": false,
"dwellTimeMinutes": null,
"isActiveFlag": false,
"lastUpdatedDate": "2019-04-08T16:19:25.5505425+00:00",
"geofencePolygon": null,
"allowGeofenceRewind": false,
"dwellTimeBufferMinutes": null,
"operatingHours": [
{
"dayOfWeek": "Sunday",
"startTime": "00:00:00",
"endTime": "23:59:00"
},
{
"dayOfWeek": "Monday",
"startTime": "00:00:00",
"endTime": "23:59:00"
},
{
"dayOfWeek": "Tuesday",
"startTime": "00:00:00",
"endTime": "23:59:00"
},
{
"dayOfWeek": "Wednesday",
"startTime": "00:00:00",
"endTime": "23:59:00"
},
{
"dayOfWeek": "Thursday",
"startTime": "00:00:00",
"endTime": "23:59:00"
},
{
"dayOfWeek": "Friday",
"startTime": "00:00:00",
"endTime": "23:59:00"
},
{
"dayOfWeek": "Saturday",
"startTime": "00:00:00",
"endTime": "23:59:00"
}
],
"loadTimes": [
{
"isLoadFlag": false,
"pieceUnit": "Pallet",
"loadTimeMinutes": 15
},
{
"isLoadFlag": true,
"pieceUnit": "Box",
"loadTimeMinutes": 10
}
]
}
Updated about 2 months ago