1. Product
Onflow Open API
  • Getting Started
  • API
    • Config
      • Get Warehouse
      • Get Brand
      • Upload file
    • Product
      • Create Product
        POST
      • Assign Product
        PUT
      • Get Product List
        GET
      • Get Product Detail
        GET
      • Delete Product
        DELETE
      • Get Stock
        GET
    • PO
      • Get PO List
      • Create PO
      • Cancel PO
    • Shipment
      • B2C shipment
        • Get B2C Shipment
        • Create B2C Shipment
          • Create B2C Shipment
        • Cancel B2C Shipment
          • Cancel B2C Shipment
  1. Product

Get Product Detail

GET
/api/v1/products/{oasin}/detail
This API is used to retrieve product detail

Request

Path Params

Header Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/products//detail' \
--header 'Authorization: {{token}}' \
--header 'Accept-Language: vi'
Response Response Example
{
    "data": {
        "currency": "VND",
        "created_time": 1769593324,
        "updated_time": 1769593324,
        "oasin": "OASIN1470562",
        "name": "HIGH VALUE",
        "sku": "SKU-1769593324447",
        "status": "NEW",
        "price": "500000.00",
        "brand": {
            "id": 2240,
            "name": "Tamron"
        },
        "barcodes": [
            "1769593324447"
        ],
        "weight": 200,
        "length": 30,
        "width": 20,
        "height": 20,
        "product_size": "Nhỏ",
        "product_image_url_main": "https://nhl.sgp1.cdn.digitaloceanspaces.com/ts/351b89f7f772421a9dc53dd6237a7f35.jpg",
        "product_image_url_secondary": "https://cf.shopee.vn/file/image.jpg",
        "product_characteristics": "FRAGILE",
        "storage_method": "NORMAL",
        "inventory_tracking_type": "BOTH",
        "outbound_strategy": "LIFO",
        "shelf_life": null,
        "min_shelf_life_inbound": null,
        "min_shelf_life_outbound": null,
        "is_nozzle_reinforcement": true,
        "is_bubble_wrap": false,
        "packaging_tape": "ONFLOW_TAPE",
        "packaging_material": "BUBBLE_WRAP_LARGE",
        "packaging_note": "Đóng từ từ hoi",
        "min_stock_warning": 10,
        "product_price": "500000.00",
        "product_type": "PHYSICAL",
        "product_unit": "PIECE",
        "product_color": null,
        "warehouse_codes": [
            {
                "code": "ONF_WH_HCM_APD",
                "name": "FC APD"
            }
        ]
    },
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "OK",
    "total": 1,
    "version": "1.0.3",
    "error_detail": null
}
Modified at 2026-01-29 09:03:30
Previous
Get Product List
Next
Delete Product
Built with