GET IB Shipment

You can query the IB Shipment entity to find out the LPN Count and Shipped Quantity for a specific shipment. The LPN Count and Shipped Quantity fields are added in the response when you pass GET method (IB Shipment API) for Cartonized Shipments.

GET … entity/ib_shipment?shipment_nbr=XXXXXXX&fields=lpn_count,shipped_qty

Example Request

{
    "result_count": 1,
    "page_count": 1,
    "page_nbr": 1,
    "next_page": null,
    "previous_page": null,
    "results": [
        {
            "lpn_count": 4,
            "shipped_qty": 40.0
        }
    ]
}