1. PO
Onflow Open API
  • Getting Started
  • Status & Shipment Logic Overview
  • API
    • Config
      • Get Warehouse
      • Get Brand
      • Get Province
      • Get District
      • Get Ward
      • Upload file
    • Product
      • Create Product
      • Assign Product
      • Get Product List
      • Get Product Detail
      • Get Stock
      • Deactivate Product
    • PO
      • Create PO
        POST
      • Get PO List
        GET
      • Get PO Bill
        GET
      • Get PO Detail
        GET
      • Get PO Inspection Detail
        GET
      • Cancel PO
        PUT
    • Shipment
      • B2C Shipment
        • Create B2C Shipment
        • Get B2C Shipment List
        • Get B2C Shipment Detail
        • Cancel B2C Shipment
      • B2C Return shipment
        • Create Return B2C Shipment
        • Get Return B2C Shipment List
        • Get Return B2C Shipment Detail
        • Cancel Return B2C Shipment
  • Webhook
  1. PO

Get PO Inspection Detail

GET
/v1/purchase-orders/{po_code}/inspection-list
This API retrieves PO inspection details and is only applicable when the PO reaches the final status = COMPLETED.

Request

Path Params

Header Params

Responses

🟢200
application/json
Body

🟢200
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/purchase-orders//inspection-list' \
--header 'Authorization: {{token}}' \
--header 'Accept-Language: vi'
Response Response Example
200 - - Success
{
    "data": [
        {
            "package_code": "P1",
            "oasin": "OASIN2393470",
            "sku": "SKU-1773822311601",
            "product_quantity": 0,
            "volume": "20.0x30.0x20.0",
            "weight": 200.0,
            "inbound_quantity": 2,
            "putaway_quantity": 2,
            "is_putaway_completed": true,
            "stock_level": "A",
            "batch_lot_code": "468",
            "manufacturing_date": 0.0,
            "expiry_date": 0.0,
            "putaway_time": 1774228827.0
        },
        {
            "package_code": "P1",
            "oasin": "OASIN2393470",
            "sku": "SKU-1773822311601",
            "product_quantity": 0,
            "volume": "20.0x30.0x20.0",
            "weight": 200.0,
            "inbound_quantity": 8,
            "putaway_quantity": 8,
            "is_putaway_completed": true,
            "stock_level": "A",
            "batch_lot_code": "3369",
            "manufacturing_date": 0.0,
            "expiry_date": 0.0,
            "putaway_time": 1774228819.0
        },
        {
            "package_code": "P1",
            "oasin": "OASIN1128460",
            "sku": "SKU-1772441256739",
            "product_quantity": 0,
            "volume": "20.0x30.0x20.0",
            "weight": 200.0,
            "inbound_quantity": 10,
            "putaway_quantity": 10,
            "is_putaway_completed": true,
            "stock_level": "A",
            "batch_lot_code": "",
            "manufacturing_date": 1774198800.0,
            "expiry_date": 1793120400.0,
            "putaway_time": 1774228810.0
        },
        {
            "package_code": "P2",
            "oasin": "OASIN4091782",
            "sku": "SKU-1773106419858",
            "product_quantity": 0,
            "volume": "20.0x30.0x20.0",
            "weight": 200.0,
            "inbound_quantity": 10,
            "putaway_quantity": 10,
            "is_putaway_completed": true,
            "stock_level": "A",
            "batch_lot_code": "",
            "manufacturing_date": 0.0,
            "expiry_date": 0.0,
            "putaway_time": 1774228802.0
        }
    ],
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "OK",
    "total": 1,
    "version": "1.0.3",
    "error_detail": null
}
Modified at 2026-03-27 03:32:51
Previous
Get PO Detail
Next
Cancel PO
Built with