Verify IB Shipment
This API allows external systems to verify inbound (IB) shipments.
To verify an IB shipment, you can use either IB Shipment ID or IB Shipment Number.
URL to verify an IB shipment using IB Shipmentâs ID
POST .../wms/lgfapi/v10/entity/ib_shipment/{id}/verify_shipment
Request Body
Not required as specific IB Shipment id is passed in the URL.
Sample Response
204 No Content
URL to verify an IB shipment using IB Shipment Number
POST .../wms/lgfapi/v10/entity/ib_shipment/verify_shipment
Request Parameters
| Parameter/Field Name | Type | Required | Description |
| facility_id | Integer | Conditional | Facility context by id. |
| facility_id__code | String | Conditional | Facility context by code. |
| company_id | Integer | Conditional | Company context by id. |
| company_id__code | String | Conditional | Company context by code. |
| shipment_nbr | String | Yes | IB Shipment Number to verify. |
Note:
- Facility and Company details are mandatory to send.
- Either facility_id or facility_id__code is mandatory to send.
- Either company_id or company_id__code is mandatory to send.
Request Body
{
"parameters":{
"company_id__code": "Company1",
"facility_id__code": "Facility1",
"shipment_nbr": "SHPMNT-001"
}
}
Sample Response
204 No Content