Nhảy tới nội dung

Danh mục

Lấy ra danh mục sản phẩm

HTTP Request

[GET] /api/v6/products/categories

Query Parameters

Fields

FieldsTypeDescription
idintegerĐịnh danh
category_namestringTên danh mục
category_codestringMã danh mục
descriptionstringMô tả
is_defaultboolLà mặc định
parent_idintegerDanh mục cha
levelintegerCấp danh mục

Filtering

FieldsSupportTypeDescription
ideq,inintegerĐịnh danh
validis,inintegerHợp lệ hay không

Sort

Sort (field)Direction
idasc,desc

Limit & Offset

TypeDescription
LimitintegerLấy bao nhiêu bản ghi
OffsetintegerBỏ qua bao nhiêu bản ghi

Example

HTTP Request

GET api/v6/products/categories?fields=category_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,
"category_name": "TEST PRODUCT CATEGORY API",
}
],
"has_more": false,
"offset": 0,
"limited": 1
}