API Docs
Home
Home
Developer GuideAPI
StatusWebhooks
Developer GuideAPI
StatusWebhooks
  1. Options
  • Config
    • List Pickup Address
      GET
    • List Box Dimension
      GET
    • List vendor
      GET
    • List store
      GET
  • Online Product
    • Options
      • List category
        GET
      • List brand
        GET
    • Create Single Product
      POST
    • Create Product From Product Inventory
      POST
    • List product
      GET
    • Product detail
      GET
  • Product Inventory
    • Options
      • List Outbound Strategy
      • List Product Type
      • List Material
      • List Storage Method
    • List product inventory
      GET
    • Product inventory detail
      GET
    • Create single inventory product
      POST
  • Order
    • Shipping Service
      • Preview shipping prices
        • List shipping service
        • List available courier
      • List available courier from order
      • List shipping service of courier
    • Create order B2C
      POST
    • Create order B2B
      POST
    • List order
      GET
    • Order detail
      GET
    • Cancel order
      PATCH
  • Shipment
    • Create shipment auto
      POST
    • [Retail][Ship by self] Create shipment with item
      POST
    • Cancel shipment
      PATCH
    • List shipment
      GET
    • Shipment detail
      GET
    • List shipment of order
      GET
  • Shipment Inbound
    • Create shipment inbound
    • Cancel shipment inbound
    • List shipment inbound
    • Shipment inbound detail
    • Shipment inbound items
  • Order Return
    • List return order
    • Return order detail
    • Create return order
    • Cancel Return Order
  • Courier
    • List courier service integrated
    • List courier operate
    • List courier integrated
  • Address Directory
    • Province
    • District
    • Ward
  1. Options

List brand

GET
/api/v1/public/products/brand/list
This API retrieves a list of all available product brands.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/public/products/brand/list?page=1&page_size=5' \
--header 'Authorization;'
Response Response Example
{
  "status_code": 200,
  "data": [
    {
      "id": 242397,
      "name": "XXIYI",
      "code": null,
      "is_active": true,
      "is_delete": false,
      "is_default": true,
      "created_time": 1730426350,
      "updated_time": 1730426350,
      "user": 190,
      "business": 276
    },
    {
      "id": 242396,
      "name": "WINDIXX",
      "code": null,
      "is_active": true,
      "is_delete": false,
      "is_default": false,
      "created_time": 1730426343,
      "updated_time": 1730426343,
      "user": 190,
      "business": 276
    },
    {
      "id": 242223,
      "name": "FOIF",
      "code": null,
      "is_active": true,
      "is_delete": false,
      "is_default": false,
      "created_time": 1698639952,
      "updated_time": 1698639952,
      "user": null,
      "business": null
    },
    {
      "id": 242164,
      "name": "Belkin",
      "code": null,
      "is_active": true,
      "is_delete": false,
      "is_default": false,
      "created_time": 1667894166,
      "updated_time": 1667894166,
      "user": null,
      "business": null
    },
    {
      "id": 152603,
      "name": "Jmella",
      "code": null,
      "is_active": true,
      "is_delete": false,
      "is_default": false,
      "created_time": 1667889111,
      "updated_time": 1667889111,
      "user": null,
      "business": null
    }
  ],
  "error": false,
  "error_code": null,
  "log_id": null,
  "messages": "",
  "total": 69772
}

Request

Query Params
page
integer 
required
Example:
1
page_size
integer 
required
<= 100
Example:
5
Header Params
Authorization
string 
required
Default:
{{your_api_key_here}}

Responses

🟢200OK
application/json
Body
status_code
integer 
optional
data
array [object {9}] 
optional
id
integer 
optional
name
string 
optional
code
string 
optional
is_active
boolean 
optional
is_delete
boolean 
optional
created_time
integer 
optional
updated_time
integer 
optional
user
integer  | null 
optional
business
integer  | null 
optional
error
boolean 
optional
error_code
string 
optional
log_id
string 
optional
messages
string 
optional
total
integer 
optional
Previous
List category
Next
Create Single Product
Built with