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 List

GET
/api/v1/products/list
This API is used to retrieve product list.

Request

Query Params

Header Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/products/list?page=1&page_size=50' \
--header 'Authorization: {{token}}' \
--header 'Accept-Language: vi'
Response Response Example
{
    "data": [
        {
            "created_time": 1767924625,
            "updated_time": 1767924625,
            "oasin": "OASIN8778760",
            "name": "test product 9",
            "sku": "sku-00000000000000000000000000000006",
            "status": "NEW",
            "warehouse_codes": [
                {
                    "code": "ONF_WH_HCM_APD",
                    "name": "FC APD"
                }
            ]
        },
        {
            "created_time": 1767924383,
            "updated_time": 1767924383,
            "oasin": "OASIN1947270",
            "name": "test product 9",
            "sku": "sku-00000000000000000000000000000005",
            "status": "NEW",
            "warehouse_codes": [
                {
                    "code": "ONF_WH_HCM_APD",
                    "name": "FC APD"
                }
            ]
        },
        {
            "created_time": 1767924353,
            "updated_time": 1768018849,
            "oasin": "OASIN1774810",
            "name": "test product 9",
            "sku": "sku-00000000000000000000000000000004",
            "status": "NEW",
            "warehouse_codes": [
                {
                    "code": "ONF_WH_HCM_APD",
                    "name": "FC APD"
                }
            ]
        },
        {
            "created_time": 1767924297,
            "updated_time": 1767924297,
            "oasin": "OASIN1454343",
            "name": "test product 9",
            "sku": "sku-00000000000000000000000000000003",
            "status": "NEW",
            "warehouse_codes": [
                {
                    "code": "ONF_WH_HCM_APD",
                    "name": "FC APD"
                }
            ]
        },
        {
            "created_time": 1767924227,
            "updated_time": 1767924227,
            "oasin": "OASIN1061243",
            "name": "test product 9",
            "sku": "sku-00000000000000000000000000000002",
            "status": "NEW",
            "warehouse_codes": [
                {
                    "code": "ONF_WH_HCM_APD",
                    "name": "FC APD"
                }
            ]
        }
    ],
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "OK",
    "total": 5,
    "version": "1.0.0"
}
Modified at 2026-01-29 09:03:30
Previous
Assign Product
Next
Get Product Detail
Built with