Extended Air Visibility
project44's Extended Air Visibility converges data from multiple sources to give you visibility into tracking milestones for pre- and post-carriage shipments.
Overview of Workflow
The workflows to create, get updates, update, and delete air shipments with extended visibility are similar to the workflows for Air Visibility. This documentation provides information on how to use the create a shipment and get milestone updates specifically for Door to Door shipments.
Create a Shipment with the necessary identifier information to add the shipment to the project44 system and discover other identifiers including Master Air Waybill (MAWB). These identifiers will return in the
relatedShipments
array in the response for creating a shipment.View Extended Visibility Events with a pull request using the Get Event History endpoint or the Get Full Tracking History response. If you have created a webhook, you will receive push tracking notifications for extended visibility events.
Create a Shipment
Create a shipment to be tracked in project44's network. This step is necessary to receive extended visibility milestone updates. The response to the request to create a shipment will include identifiers for related shipments.
Requirements
- Freight Forwarder SCAC (FFW_SCAC)
- House Air Waybill (HOUSE_AIR_WAYBILL)
Workflow
- Prepare a
POST
request to /api/v4/shipments/tracking. - Add the HAWB and FFW SCAC. For example
{ "identifiers": [ { "type": "HOUSE_AIR_WAYBILL", "value": "string" }, { "type": "FFW_SCAC", "value": "string" } ] }
- Send the request.
You have successfully submitted the response when you receive a 200 OK
response.
Here is an sample of the minimum response schema:
{ "id": "string", "createdDateTime": "string", "identifiers": [ { "type": "HOUSE_AIR_WAYBILL", "value": "string" }, { "type": "FFW_SCAC", "value": "string" } ], "shipmentShareLink": "string", "lastModifiedDateTime": "string" }