Danh sách IMEI

Request

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

Filters

Key
Type
Description

productId

int

ID sản phẩm

imei

string

IMEI sản phẩm

depotId

int

ID kho hàng

status

int

Trạng thái IMEI 1 = Mới 2 = Đã bán 3 = Đang vận chuyển 5 = Lỗi 6 = Đã trả nhà cung cấp 7 = Tồn trong cửa hàng 8 = Đang chuyển kho 9 = Đang bảo hành 10 = Đã trả bảo hành 11 = Hàng Demo

Response

Failed response

Successful response

{
  "code": 1,
  "paginator": {
    "next": "Dùng để lấy dữ liệu trang tiếp theo"
  },
  "data": [
    {
      "shopProductId": "(string) ID sản phẩm website tích hợp",
      "product": {
        "id": "(int) ID sản phẩm",
        "name": "(string) Tên sản phẩm",
        "code": "(string) Mã sản phẩm",
        "barcode": "(string) Mã vạch sản phẩm"
      },
      "depot": {
        "id": "(int) ID kho hàng",
        "name": "(string) Tên kho hàng"
      },
      "imei": "(string) Số IMEI",
      "price": "(int) Giá bán",
      "importPrice": "(int) Giá nhập",
      "description": "(string) Mô tả",
      "status": "(int) Trạng thái IMEI",
      "warranty": {
        "month": "(int) Số tháng bảo hành",
        "expiredDate": "(string) Ngày hết hạn"
      },
      "extendedWarranty": {
        "id": "(int) ID gói bảo hành mở rộng",
        "name": "(string) Tên gói bảo hành mở rộng",
        "month": "(int) Số tháng bảo hành mở rộng"
      },
      "createdAt": "(int) Thời gian tạo (định dạng timestamp)",
      "activatedAt": "(int) Thời gian kích hoạt (định dạng timestamp)"
    }
  ]
}

Last updated