Số Lượng Đối Tượng Theo Phân Trang

1.1 Mục đích sử dụng :

Dùng để lấy số lượng danh sách đối tượng theo phần trang

1.1. URI :

NameDescription

URI

{{gateway}}/v1/api/object/pivotCount

Content-Type

application/json

Method

POST

1.2. Request :

1.2.1 Request Headers :

NameRequiredDescriptionRemarks

X-API-Key

Y

API Key AWS

Authorization

Y

[xFile cấp cho đối tác]

1.2.2 Request Body :

NameTypeRequiredDescriptionRemarks

startRow

Long

Y

row bắt đầu

endRow

Long

Y

row kết thúc

filterModel

Object

Y

lọc data theo cột

sortModel

Array Object

Y

sắp xếp data theo cột

1.2.3 Request Sample :

Request URI:

{{gateway}}/v1/api/object/pivotCount

Request Body form-data :

Value

{"endRow": 50, "filterModel": {"objTypeId": {"filter": 1, "filterType": "text", "type": "equals"}}, "groupKeys": [], "pivotCols": [], "pivotMode": false, "rowGroupCols": [], "sortModel": [{"colId": "name", "sort": "asc"}], "startRow": 0, "valueCols": []}

1.3. Response :

1.3.1 Response Body - JSON:

NameTypeDescriptionRemarks

status

Long

Trạng thái kết quả api trả về

0 : Thành công

1 : Thất bại

data

Long

Kết quả api trả về

Số lượng DS đối tượng

1.3.2 Response Sample:

Response Success data

{
    "status": 0,
    "data": 20
}

Last updated