Nhảy tới nội dung

Danh sách

Lấy danh sách đơn hàng

Danh sách đơn hàng bán

>HTTP Request

[GET] /api/v6/sale_orders

Query Parameters

Fields

FieldsTypeDescription
idintegerĐịnh danh
order_codestringMã sản phẩm
real_amountnumericTổng tiền đơn hàng
f_amountnumericTổng tiền đã thanh toán
discountnumericGiảm giá phần trăm
discount_amountnumericGiảm giá tiền mặt
vat_amountnumericVAT tiền mặt
account_idintegerĐịnh danh khách hàng
account_codestringMã khách hàng
account_emailstringEmail khách hàng
account_phonenumericSố điện thoại khách hàng
account_addressstringĐịa chỉ khách hàng
order_datetimestampNgày đặt hàng
created_attimestampNgày tạo
updated_attimestampNgày sửa
statusintegerTrạng thái
assigned_userintegerNgười thực hiện
assigned_user_namestringTên người thực hiện

Filtering

FieldsSupportTypeDescription
ideq,inintegerĐịnh danh
order_dategte,lte,eq,betweentimestampNgày đặt hàng
created_ateq,gte,ltetimestampNgày tạo đơn
updated_ateq,gte,ltetimestampNgày sửa đơn

Sort

Sort (field)Direction
idasc,desc
order_dateasc,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/sale_orders?fields=order_code&limit=1&offset=1&filtering[id]=4 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json

Status

200 OK

Response

{
"data": [
{
"id": 5,
"order_code": "DH1588"
}
],
"has_more": false,
"offset": 1,
"limited": 1
}

Danh sách đơn hàng mua

HTTP Request

[GET] /api/v6/purchase_orders

Query Parameters

Fields

FieldsTypeDescription
idintegerĐịnh danh
order_codestringMã sản phẩm
real_amountnumericTổng tiền đơn hàng
f_amountnumericTổng tiền đã thanh toán
discountnumericGiảm giá phần trăm
discount_amountnumericGiảm giá tiền mặt
vat_amountnumericVAT tiền mặt
account_idintegerĐịnh danh khách hàng
account_codestringMã khách hàng
account_emailstringEmail khách hàng
account_phonenumericSố điện thoại khách hàng
account_addressstringĐịa chỉ khách hàng
order_datetimestampNgày đặt hàng
created_attimestampNgày tạo
updated_attimestampNgày sửa
statusintegerTrạng thái
assigned_userintegerNgười thực hiện
assigned_user_namestringTên người thực hiện

Filtering

FieldsSupportTypeDescription
ideq,inintegerĐịnh danh
order_dategte,lte,eq,betweentimestampNgày đặt hàng
created_ateq,gte,ltetimestampNgày tạo đơn
updated_ateq,gte,ltetimestampNgày sửa đơn

Sort

Sort (field)Direction
idasc,desc
order_dateasc,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/purchase_orders?fields=order_code&limit=1&offset=1&filtering[id]=4 HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json

Status

200 OK

Response

{
"data": [
{
"id": 4,
"order_code": "DH1588"
}
],
"has_more": false,
"offset": 0,
"limited": 1
}