Danh sách thương hiệu

Request

curl --location 'https://pos.open.nhanh.vn/v3.0/product/brand?appId={{appId}}&businessId={{businessId}}' \
--header 'Authorization: {{accessToken}}' \
--header 'Content-Type: application/json'
--data '{
    "filters": {
        "status": 1
    }
}'

Filters

Key
Type
Description

ids

array

Mảng ID thương hiệu, tối đa 100

name

string

Tên thương hiệu

code

string

Mã thương hiệu

status

int

Trạng thái thương hiệu: 1 = Active 2 = Inactive

Response

Failed response

Successful response

{
  "code": 1,
  "paginator": {
    "next": "Giá trị để lấy dữ liệu trang tiếp theo"
  },
  "data": [
    {
      "id": "(int) ID thương hiệu 1",
      "code": "(string) Mã thương hiệu",
      "name": "(string) Tên thương hiệu",
      "status": "(int) Trạng thái thương hiệu",
      "parentId": "(int) ID thương hiệu cha",
      "createdAt": "(timestamp) Thời gian tạo thương hiệu"
    },
    {
      "id": "(int) ID thương hiệu 2",
      "code": "(string) Mã thương hiệu",
      "name": "(string) Tên thương hiệu",
      "status": "(int) Trạng thái thương hiệu",
      "parentId": "(int) ID thương hiệu cha",
      "createdAt": "(timestamp) Thời gian tạo thương hiệu"
    }
  ]
}

Last updated