Receiving Query API
Receiving Query API retrieves the receiving history for specific items. It provides detailed information on each item, including Item ID, quantity and other relevant data. This article introduces the general Receiving Query API for easily understanding and applying this API.
Introduction
Receiving Query API is commonly used to track the lifecycle of goods from delivery to processing within a warehouse management system. This API is to help businesses monitor and analyze their inventory’s receiving history, ensuring accurate records of incoming goods and allowing for better inventory management and reporting.
API Request
API: POST /edi/inbound/receiving/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 receiving list, 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": [
"Item ID",
"Short Description",
"UOM",
"Customer",
"Title",
"Received Date",
"Received Count",
"Expected Qty",
"Received Qty"
],
"data": []
},
"paging": {
"totalCount": 0,
"pageNo": 1,
"totalPage": 0,
"startIndex": 1,
"endIndex": 0,
"limit": 100
}
}