Generating a shareable shipment page
The shareable shipment page enables you to easily share a real-time view of a single container, allowing automated tracking for both users and non-users. This new feature will streamline the tracking process for customers, shippers, consignees, and other key stakeholders, seamlessly creating a single source of truth. The new page can be shared as a link, or embedded into any external or internal portal.
Arguments
Name | Type | Description |
---|---|---|
trackedShipmentId | [ObjectId!]! | The tracked shipment's unique Windward assigned ID. |
Returns
Name | Description |
---|---|
sharedShipmentLink | URL with the shareable shipment page, that does not require login to Windward's system. |
Example Code
Sample Query
query sharedShipmentLink {
sharedShipmentLink(trackedShipmentId: "64b637058f3bd5db62d622XXX2")
}
Variables
{
trackedShipmentId: "64b637058f3bd5db62d622XXX2"
}
Response
{
"data": {
"sharedShipmentLink": "https://ofv.wnwd.com/shipment/4ef5f9df-8fd6-41fc-996d-63d3975cf363"
}
}