Phường / Xã
AG - Fulfillment cung cấp API thông tin địa chỉ giúp khách hàng đồng bộ đơn hàng dễ dàng hơn
Attribute
Value
Description
Attribute
Type
Required
Description
const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.agbiz.vn/v2/order/locations/wards?districtId=63_5136802',
headers: {
'Accept': 'application/json'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});Last updated