Outbound View Serial Number API
Outbound View Serial Number API is used to retrieve a list of all the shipped serial numbers associated with a specific order. This article introduces the general Outbound View Serial Number API for easily understanding and applying this API.
Introduction
Outbound View Serial Number API helps track individual items in an outbound shipment by their serial numbers, ending detailed traceability of shipped goods. It allows users to verify what has been shipped, manage inventory accurately and maintain complete records for auditing or customer inquiries.
API Request
API: POST /edi/outbound/order/serial-number
Body Request:
Body Parameter | Required | Description | Note |
---|---|---|---|
CompanyID | Y | Company ID | "LT" |
CustomerID | Y | Customer ID | "AUKINT0001" |
FacilityID | Y | Facility ID | "899" |
ReferenceNo | N | "" | |
PONo | N | "" |
API Return
It returns the SN list, for more detail, please refer to the following example.
Example
Request
{
"CompanyID": "LT",
"CustomerID": "AUKINT0001",
"FacilityID":"889",
"ReferenceNo":"8501397292"
}
Response
// Success return
{
"FacilityID": "889",
"CustomerID": "AUKINT0001",
"ReferenceNo": "8501397292",
"SnList": [
"LAUSQDMV2503657"
]
}