Nhảy tới nội dung

Chi tiết đơn hàng

Xem thông tin chi tiết một đơn hàng

HTTP Request

Lấy thông tin theo mã đơn hàng
GET /api/v3/orders/ORDER_CODE
Trong đó ORDER_CODE là mã của đơn hàng trên hệ thống Getfly (order_code)

Lấy thông tin theo ID đơn hàng
GET /api/v3/orders/detail?order_id=ID
Trong đó ID là ID của đơn hàng trên hệ thống Getfly (order_id)

Query Parameters

ParameterDefaultDescription
custom_field_listnullCác trường định nghĩa dũ liệu cần lấy

Điều kiện custom_field_list sẽ truyền mã của các trường custom field, cách nhau bởi dấu phẩy

Ví dụ: custom_field_list = "numeric_input,nguoi_van_chuyen"

Response

Dữ liệu trả về bao gồm:

  • order_info: chứa thông tin chi tiết về đơn hàng
  • products: mảng chứa thông tin sản phẩm
  • payments: chưa thông tin thanh toán
  • terms: mảng điều khoản đơn hàng
{
"order_info": {
"order_id": 18293,
"order_code": "DH18293",
"order_date": "03/01/2024",
"order_type": 2,
"order_status": 1,
"amount": 900000,
"discount": 0,
"discount_amount": 0,
"created_at": "03/01/2024",
"installation": 0,
"installation_amount": 0,
"transport": 0,
"transport_amount": 0,
"lading_status": "ASSIGNING",
"store_id": 0,
"account_id": 25,
"account_name": "Nguyễn Thị Thanh Thuỷ",
"account_code": "KH1905",
"account_phone": "0984161616",
"account_email": null,
"assigned_name": "Nguyễn Trung Hiếu",
"assigned_user_email": "nguyentrunghieu@gmail.com",
"is_repay": "0",
"account_created_at": "2019-08-09 18:08:09",
"account_address": "Địa chỉ giao hàng",
"payment_status": "unpaid",
"lading_code": "24DWX2OF",
"lading_info": {
"status": {
"code": "ASSIGNING",
"name": "Finding a supplier"
},
"tracking_url": "http://app.ahamove.com/record/24DWX2OF"
},
"numeric_input": ""
},
"products": [
{
"product_id": 555,
"product_code": "FV-27CH9",
"product_name": " Quạt hút âm trần Panasonic FV-27CH9",
"quantity": 1,
"price": 500000,
"discount_amount": 50000,
"discount": 10,
"vat": 0,
"vat_amount": 0,
"amount": 450000,
"description": "",
"unit_name": "Cái"
},
{
"product_id": 555,
"product_code": "FV-27CH9",
"product_name": " Quạt hút âm trần Panasonic FV-27CH9",
"quantity": 1,
"price": 500000,
"discount_amount": 50000,
"discount": 10,
"vat": 0,
"vat_amount": 0,
"amount": 450000,
"description": "",
"unit_name": "Cái"
}
],
"payments": [],
"terms": [
"Thời gian giao hàng:",
"Địa chỉ giao hàng:"
]
}