Lấy liên kết theo dõi của đơn hàng
- cURL
- JavaScript
curl -X GET \
'https://apistg.ahamove.com/v1/order/shared_link?token=<TOKEN_STG>&order_id=ABCDEF' \
-H 'cache-control: no-cache'
var requestOptions = {
method: 'GET',
redirect: 'follow'
};
fetch("https://apistg.ahamove.com/v1/order/shared_link?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 được sử dụng để lấy liên kết được chia sẻ để theo dõi đơn hàng