Version 4.0.0 of project44's API
Version 4.0.0 of project44's API
Use this POST call to get ETA of all vehicles that are terminating their route within the radius. Search can be enhanced with the type of truck, radius size from the given location and a termination time window.
availableVehiclesQuery
Search radius for capacity. Default is 25 miles or 40 km if no value is submitted. Valid values are any integer between 10-50 for miles and 16-80 for km.
Optional parameter that will only return results from a specified pool. This will only apply to customers in more than 1 pool.
Optional parameter that will return available capacity specific to the type of truck requested.
curl -i -X POST \ 'https://developers.project44.com/_mock/guides/shippers/other/truckload-cooperative/api/api/v4/tl/available-vehicles/query?page=0&size=0&sort=string' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Content-Type: application/json' \ -d '{ "address": { "postalCode": "string", "addressLines": [ "str" ], "city": "string", "state": "string", "country": "US" }, "geoCoordinates": { "latitude": -90, "longitude": -180 }, "includeMyShipments": true, "radius": 0, "radiusUnit": "FT", "sharingPool": "string", "timeRange": { "startDateTime": "2019-08-24T14:15:22Z", "endDateTime": "2019-08-24T14:15:22Z" }, "truckType": "AUTO_CARRIER" }'
{ "paginationInfo": { "total": 0, "pageSize": 0, "pageNumber": 0 }, "results": [ { … } ] }