Lấy link theo dõi hành trình đơn hàng
Lấy link theo dõi hành trình giao hàng của một đơn hàng
- cURL
- JavaScript
curl --location 'https://partner-apistg.ahamove.com/v3/orders/<order_id>/shared-link' \
--header 'Authorization: Bearer <token>'
const myHeaders = new Headers();
myHeaders.append('Authorization', 'Bearer <token>');
const requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow',
};
fetch(
'https://partner-apistg.ahamove.com/v3/orders/<order_id>/shared-link',
requestOptions
)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
HTTP Request
GET https://partner-apistg.ahamove.com/v3/orders/<order_id>/shared-link
Headers
Parameter | Value | Yêu cầu | Mô tả |
---|---|---|---|
Authorization | Bearer <token> | Có | Token của partner |
Query Parameters
Parameter | Type | Yêu cầu | Mô tả |
---|---|---|---|
order_id | String | Có | Mã đơn hàng |
Response
JSON response example:
{
"shared_link": "https://expressstg.ahamove.com/s/241021HRHVJ4"
}
Status-Code: 200 OK