Update Parcel Shipment Info

The Update Parcel Shipment Info API allows you to associate WMS orders with the appropriate ship-via. This supports parcel shipments integration with Oracle Transportation Management (OTM).

URL

POST .../wms/lgfapi/v10/order_hdr/update_parcel_shipment_info/

Validations

  • Order status must be < LOADED.

Request Parameters

These input field values may be updated by the user on the matching order_hdr.

Parameter Name Type Required Description
facility_id__code String Yes Facility code where the orders exist.
company_id__code String Yes Company code owning the orders.
order_nbr__in Array Yes List of one or more order numbers to be updated.
ship_via_code String Yes Code representing the shipping method. Lookup will be performed in WMS.

Request Body - Update Parcel Shipment Info

{
    "parameters": {
        "facility_id__code": "APIFAC03",
        "company_id__code": "APIPC",
        "order_nbr__in": [
            "SPORD0912202501",
            "SPORD0912202502"
        ]
    },
    "options": {
        "ship_via_code": "FEDEXSVAPIGND"
    }
}

Sample Response

{
    "success": true,
    "response": {
        "message": "Parcel shipment information successfully updated"
    }
}