Posted Warehouse Shipment Lines API
Overview
The WMS Posted Warehouse Shipment Lines API is a Business Central API page designed to manage posted warehouse shipment line data. This API allows external systems to interact with posted warehouse shipment line records, providing functionality for reading shipment line information.
API Details
- Publisher: smart
- API Group: wms
- API Version: v2.0
- Entity Name: postedWhseShpmntLine
- Entity Set Name: postedWhseShpmntsLines
- Source Table: Posted Whse. Shipment Line
- ODataKeyFields: No, Line No
Fields
The following fields are exposed in the API:
| Field Name | Source Field | Required | Description |
|---|---|---|---|
No | Posted Whse. Shipment Line."No." | Yes | Unique identifier for the shipment. |
Line No | Posted Whse. Shipment Line."Line No." | Yes | Line number of the shipment. |
Item No | Posted Whse. Shipment Line."Item No." | No | Item number associated with the line. |
Quantity | Posted Whse. Shipment Line.Quantity | No | Quantity of items in the shipment line. |
Source No | Posted Whse. Shipment Line."Source No." | No | Source document number. |
Example Usage
Retrieve a Posted Warehouse Shipment Line
GET host/instance/api/smart/wms/v2.0/companies(companyId)/postedWhseShpmntsLines('SHPMNT001', 10000)
Example Response
{
"No": "SHPMNT001",
"Line No": 10000,
"Item No": "ITEM001",
"Quantity": 50,
"Source No": "SRC001"
}