API Docs
API Reference
Inventory SN Level Query

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 ParameterRequiredDescriptionNote
FacilityIDYFacility ID"889"
CustomerIDYCustomer ID"AUKINT0001"
CompanyIDYCompany ID"LT"
PagingNPage 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
  }
}