Danh sách
Trả về danh sách sản phẩm có phân trang theo các điều kiện lọc
HTTP Request
[GET] /api/v6/products
Query Parameters
Fields
| Fields | Type | Description |
|---|---|---|
| id | integer | Định danh |
| category_id | integer | Danh mục sản phẩm |
| origin_id | integer | Nguồn gốc |
| unit_id | integer | Đơn vị tính |
| manufacturer_id | integer | Nhà sản xuất |
| services | bool | Là sản phẩm dịch vụ |
| saleoff_price | float | Chiết khấu online |
| created_at | timestamp | Ngày tạo |
| updated_at | timestamp | Ngày sửa |
| featured_image | string | Logo sản phẩm |
| product_name | string | Tên sản phẩm |
| product_code | string | Mã sản phẩm |
| last_active | timestamp | Thời gian hoạt động cuối |
| description | string | Mô tả |
| cover_price | float | Giá bán lẻ |
| price_wholesale | float | Giá bán buôn |
| discount | float | Chiết khấu sản phẩm |
| short_description | string | Mô tả ngắn |
| discount_wholesale | float | Chiết khấu bán buôn |
| price_online | float | Giá bán online |
| discount_online | float | Chiết khấu bán online |
| price_average_in | float | Giá mua |
| discount_in | float | Chiết khấu giá mua |
| product_vat | float | VAT sản phẩm |
| images | string[] | Ảnh sản phẩm |
| custom_fields | object | Thông tin định nghĩa dữ liệu |
Filtering
| Fields | Support | Type | Description |
|---|---|---|---|
| id | eq,in | integer | Định danh |
| product_name | eq,contains | string | Tên sản phẩm |
| product_code | eq,contains | string | Mã sản phẩm |
| product_vat | eq | float | VAT sản phẩm |
| manufacturer_id | eq | integer | Nhà sản xuất |
| short_description | eq,contains | string | Mô tả ngắn |
| description | eq,contains | string | Mô tả |
| is_affiliate | eq | bool | Là sản phẩm liên kết |
| category_id | eq | integer | Danh mục sản phẩm |
| origin_id | eq | integer | Nguồn gốc |
| unit_id | eq | integer | Đơn vị tính |
| cover_price | eq | float | Giá bán lẻ |
| discount | eq | float | Chiết khấu sản phẩm |
| price_wholesale | eq | float | Giá bán buôn |
| discount_wholesale | eq | float | Chiết khấu bán buôn |
| price_average_in | eq | float | Giá mua |
| discount_in | eq | float | Chiết khấu giá mua |
| price_online | eq | float | Giá bán online |
| valid | is,in | bool | Hợp lệ hay không |
| discount_online | eq,contains,empty | float | Chiết khấu bán online |
| saleoff_price | eq | float | Chiết khấu online |
| services | is | bool | Là sản phẩm dịch vụ |
| last_change | eq | timestamp | Tỉnh/Thành |
| last_active | eq | timestamp | Thời gian hoạt động cuối |
| created_at | eq,gte,lte,between | timestamp | Ngày tạo |
| updated_at | eq,gte,lte,between | timestamp | Ngày sửa |
| out_of_stock | is | bool | Hết hàng |
Sort
| Sort (field) | Direction |
|---|---|
| id | asc,desc |
| created_at | asc,desc |
| updated_at | asc,desc |
Limit & Offset
| Type | Description | |
|---|---|---|
| Limit | integer | Lấy bao nhiêu bản ghi |
| Offset | integer | Bỏ qua bao nhiêu bản ghi |
Example
HTTP Request
GET api/v6/products?fields=product_name&limit=1&offset=0&filtering[id]=4 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
Status
200 OK
Response
{
"data": [
{
"id": 4,
"product_name": "TEST PRODUCT API"
}
],
"has_more": false,
"offset": 0,
"limited": 1
}