Nguồn đơn hàng
API này dùng để lấy danh sách nguồn đơn hàng.
Request
Xem các common request params
curl --location 'https://pos.open.nhanh.vn/v3.0/order/source?appId=YOUR_APP_ID&businessId=YOUR_BUSINESS_ID' \
--header 'Authorization: YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"filters": {
"ids": ["100", "101"],
},
"paginator": {
"size": 50
}
}'
Filters
Key
Type
Description
ids
array
Mảng ID nguồn đơn hàng, tối đa 100
Response
Xem cấu trúc chung tại đây.
Failed response
Xem các mã lỗi chung tại đây.
Successful response
{
"code": 1,
"paginator": {
"next": "Giá trị để lấy dữ liệu trang tiếp theo"
},
"data": [
{
"id": "(int) ID nguồn 1",
"name": "(string) Tên nguồn 1",
"status": "(int) Trạng thái (1 = Active, 2 = Inactive)",
"createdAt": (int) Thời gian tạo (định dạng timestamp)
},
{
"id": "(int) ID nguồn 2",
"name": "(string) Tên nguồn 2",
"status": "(int) Trạng thái (1 = Active, 2 = Inactive)",
"createdAt": (int) Thời gian tạo (định dạng timestamp)
}
]
}
Last updated