Inventory SN Level Query API
Inventory SN Level Query API allows users to search for inventory and retrieve inventory data based on the serial number of individual items. This article introduces the general Inventory SN Level Query API for easily understanding and applying this API.
Introduction
Inventory SN Level Query API provides detailed information for each item with a unique serial number, including its description, status and other relevant inventory attributes. It’s especially useful in industries that require precise tracking and management of serialized items, such as electronics or medical equipment. This API enhances traceability and control over inventory at a granular level, ensuring that each serialized item can be monitored throughout its lifecycle.
API Request
API: POST /edi/inventory-sn-report/search-by-paging
Body Request:
Body Parameter | Required | Description | Note |
---|---|---|---|
FacilityID | Y | Facility ID | "889" |
CustomerID | Y | Customer ID | "AUKINT0001" |
CompanyID | Y | Company ID | "LT" |
Paging | N | Page Object | "PageNo": 2 |
API Return
It returns the inventory summary with the item info, for more detail, please refer to the following example.
Example
Request
{
"FacilityID":"889",
"CustomerID":"AUKINT0001",
"CompanyID":"LT",
"Paging": {
"PageNo": 2
}
}
Response
// Success return
{
"results": {
"head": [
"SN",
"Receive #",
"Order #",
"Customer",
"Item ID",
"Short Description",
"Description",
"UOM",
"Lot #",
"Supplier",
"Title",
"Status",
"LP #",
"ReceiveDate",
"ExpirationDate",
"ShelfLifeDays",
"ShipDate"
],
"data": []
},
"paging": {
"totalCount": 0,
"pageNo": 1,
"totalPage": 0,
"startIndex": 1,
"endIndex": 0,
"limit": 100
}
}