API Docs
API Reference
Inbound View Serial Number

Inbound View Serial Number API

Inbound View Serial Number API retrieves and returns a list of received serial numbers for a specific inbound transaction. This article introduces the general Inbound View Serial Number API for easily understanding and applying this API.

Introduction

Inbound View Serial Number API is typically used to track and confirm the serial numbers of items that have bee received into the system, ensuring accurate inventory management and traceability.

API Request

API: POST /edi/inbound/receipt/serial-number
Body Request:

Body ParameterRequiredDescriptionNote
CompanyIDYCompany ID"LT"
CustomerIDYCustomer ID"AUKINT0001"
FacilityIDYFacility ID"899"
ReferenceNoN""
PONoN""

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": "3501397292",
  "SnList": [
      "LAUSQDMV2503657",
      "LAUSQDMV2503658"
  ]
}