Lấy thông tin chi tiết đơn hàng
- cURL
- JavaScript
curl -X GET \
'https://apistg.ahamove.com/v1/order/detail?token=<TOKEN_STG>&order_id=ABCDEF' \
-H 'cache-control: no-cache'
var requestOptions = {
method: 'GET',
redirect: 'follow',
};
fetch(
'https://apistg.ahamove.com/v1/order/detail?token=<TOKEN_STG>&order_id=ABCDEF',
requestOptions
)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.log('error', error));
API này dùng đế lấy thông tin chi tiết của đơn hàng
HTTP Request
GET https://apistg.ahamove.com/v1/order/detail
Query Parameters
Parameter | Type | Yêu cầu | Mô tả |
---|---|---|---|
token | String | Có | Token của người dùng đã tạo đơn hoặc token của tài khoản cha |
order_id | String | Không | Mã đơn hàng |
Response
JSON response example:
{
"_id": "ABCDEF",
...# order detail
}
Status-Code: 200 OK
Các lỗi thường gặp
Mã lỗi | Nội dung | Mô tả |
---|---|---|
404 | Not Found | Không tìm thấy token |
401 | Unauthorized | Không được cấp phép |
500 | Internal Server Error | Hệ thống của chúng tôi có lỗi xảy ra. Xin thử lại sau |
503 | Service Unavailable | Chúng tôi tạm thời đang không hoạt động để bảo trì. Xin vui lòng thử lại sau |