Item Tracking Line API
Overview
The WMS Item Tracking Lines API is a Business Central API page designed to manage item tracking line data. This API allows external systems to interact with reservation entries, providing functionality for reading item tracking information.
API Details
- Publisher: smart
- API Group: wms
- API Version: v2.0
- Entity Name: itemTrackingLine
- Entity Set Name: itemTrackingLines
- Source Table: Reservation Entry
- ODataKeyFields: Entry No.
Fields
The following fields are exposed in the API:
| Field Name | Source Field | Required | Description |
|---|---|---|---|
EntryNo |
Reservation Entry."Entry No." |
Yes | Unique identifier for the reservation entry. |
ItemNo |
Reservation Entry."Item No." |
Yes | Item number associated with the entry. |
LotNo |
Reservation Entry."Lot No." |
No | Lot number of the item. |
SerialNo |
Reservation Entry."Serial No." |
No | Serial number of the item. |
LocationCode |
Reservation Entry."Location Code" |
No | Location code where the item is stored. |
Quantity |
Reservation Entry."Quantity (Base)" |
Yes | Quantity of the item in base units. |
ExpirationDate |
Reservation Entry."Expiration Date" |
No | Expiration date of the item. |
ReservationStatus |
Reservation Entry."Reservation Status" |
No | Status of the reservation. |
Notes
- This API is read-only. Modifications to item tracking lines are not allowed through this API.
Example Usage
Retrieve Item Tracking Lines
GET host/instance/api/smart/wms/v2.0/companies(companyId)/itemTrackingLines
Retrieve a Specific Item Tracking Line
GET host/instance/api/smart/wms/v2.0/companies(companyId)/itemTrackingLines('EntryNo')