API In thông tin đơn hàng
post/get
Lưu ý : API này cần truyền token ở header.
https://online-gateway.ghn.vn/shiip/public-api/v2/a5/gen-token
https://dev-online-gateway.ghn.vn/shiip/public-api/v2/a5/gen-token
Sau khi chạy API In thông tin đơn hàng để lấy được token ABC thì sẽ gán vào link dưới , trong đó ABC là token khi gọi API. Thời gian hết hạn 30 phút
- Print A5: https://online-gateway.ghn.vn/a5/public-api/printA5?token=ABC
- Print 80x80: https://online-gateway.ghn.vn/a5/public-api/print80x80?token=ABC
- Print 50x72 : https://online-gateway.ghn.vn/a5/public-api/print52x70?token=ABC
- Print A5: https://dev-online-gateway.ghn.vn/a5/public-api/printA5?token=ABC
- Print 80x80: https://dev-online-gateway.ghn.vn/a5/public-api/print80x80?token=ABC
- Print 50x72 : https://dev-online-gateway.ghn.vn/a5/public-api/print52x70?token=ABC
curl --location --request POST 'https://dev-online-gateway.ghn.vn/shiip/public-api/v2/a5/gen-token' \
--header 'Token: 3b75c988-ff34-11eb-b255-166e45bc1992123' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_codes":["GA99W4RREB"]
}'
Cấu trúc Request
Trường dữ liệu | Kiểu dữ liệu | Mô tả |
---|---|---|
token | String |
Dùng để xác định định danh của tài khoản và dùng cho các trường hợp gọi tới các API. |
order_codes | Array |
Mã đơn hàng của GHN trả về cho khách hàng. |
{
"code": 200,
"message": "Success",
"data":{
"token":"e27db030-a1bf-11ea-b421-6a186c15e40e"
}
}
Cấu trúc Response
Trường dữ liệu | Mô tả |
---|---|
token |
Token ABC này được sinh ra để gán vào URL in đơn hàng theo mã đơn hàng.
|
{
"code": 400,
"message": "Lỗi gọi API: corev2_tenant_order_detail - code=404, message=Đơn hàng không tồn tại",
"data": null
}