Transportation release events (beta)
Note
These events are for customers that have opted-in to the new Orders (Beta)
API that is available in early access
. For example, customers with access to Supplier Portal will have access to these transportation release
-related event payloads. If you are an existing Shipwell customer and want early access
to migrate to the new Orders (Beta)
API, contact your customer service representative. If you want to learn more as a new Shipwell customer contact sales here.
Background
-
Transportation releases are created/assigned when an
order
is added to ashipment
. If the transportation release isunassigned
then that means that theorder
is no longer associated with thatshipment
. -
Transportation release items are the items on a
shipment
associated with particularorder
items, i.e. which items from theorder
are or will be fulfilled by theshipment
. There may be one or more transportation releases perorder
to allow for multipleshipments
to fulfill anorder
. -
Transportation releases and transportation release items are created as a byproduct of building and releasing shipments related to
orders
inOrders (Beta)
.
transportation_release.assigned
Example
{
"release_type":"TRANSPORTATION",
"released_to_shipping_plan_id":null,
"released_to_shipment_id":"shipment_id",
"released_to_shipment_reference_id":"ABC123",
"released_to_shipment_origin_stop_id":"shipment_origin_stop_id",
"released_to_shipment_destination_stop_id":"shipment_destination_stop_id",
"id":"01HGTW4SST2VRZ37SNW5BXFAY1",
"created_from_product_order_id":"01HGTW4SQ0NSY61CCG8HN33Y95",
"items":[
{
"released_from_item_id":"01HGTW4SQ6TQ71TJAYSRJ713DZ",
"released_to_shipping_plan_item_id":null,
"released_to_shipment_item_id":"shipment_item_id",
"id":"01HGTW4SSXHDAN426STHREDGMX"
}
],
"resource_type":"transportation_release",
"self_link":"/purchase-orders/01HGTW4SQ0NSY61CCG8HN33Y95/releases/01HGTW4SST2VRZ37SNW5BXFAY1"
}
transportation_release.unassigned
Example
{
"release_type":"TRANSPORTATION",
"released_to_shipping_plan_id":null,
"released_to_shipment_id":"shipment_id",
"released_to_shipment_reference_id":"ABC123",
"released_to_shipment_origin_stop_id":"shipment_origin_stop_id",
"released_to_shipment_destination_stop_id":"shipment_destination_stop_id",
"id":"01HGTW4SST2VRZ37SNW5BXFAY1",
"created_from_product_order_id":"01HGTW4SQ0NSY61CCG8HN33Y95",
"items":[
{
"released_from_item_id":"01HGTW4SQ6TQ71TJAYSRJ713DZ",
"released_to_shipping_plan_item_id":null,
"released_to_shipment_item_id":"shipment_item_id",
"id":"01HGTW4SSXHDAN426STHREDGMX"
}
],
"resource_type":"transportation_release",
"self_link":null
}
transportation_release.item.assigned
Example
{
"released_from_item_id":"01HGTW4V5SQ140HSFSY6NBZJD7",
"released_to_shipping_plan_item_id":null,
"released_to_shipment_item_id":"shipment_line_item_id",
"id":"01HGTW4V7RT86023M1EHKDANC5",
"resource_type":"transportation_item_release",
"self_link":null,
"release_id":"01HGTW4V2ZVTE5B5Q6TK0JMA2Z"
}
transportation_release.item.unassigned
Example
{
"released_from_item_id":"01HGTW4V5SQ140HSFSY6NBZJD7",
"released_to_shipping_plan_item_id":null,
"released_to_shipment_item_id":"shipment_line_item_id",
"id":"01HGTW4V7RT86023M1EHKDANC5",
"resource_type":"transportation_item_release",
"self_link":null,
"release_id":"01HGTW4V2ZVTE5B5Q6TK0JMA2Z"
}