Lấy danh sách tài khoản con
Lấy danh sách các tài khoản con của tài khoản cha dựa vào User ID trong token
- cURL
- JavaScript
curl --location 'https://partner-apistg.ahamove.com/v3/accounts/childs' \
--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/accounts/childs', requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
HTTP Request
GET https://partner-apistg.ahamove.com/v3/accounts/childs
Headers
Parameter | Loại | Yêu cầu | Mô tả |
---|---|---|---|
token | String | Có | Token của tài khoản cha |
Response
JSON response example:
[
{
"_id": "84xxxxxxxxx",
"name": "store test test test",
"partner": "test_key",
"email": null,
"referral_code": "84xxxxxxxxx",
"country_code": "VN",
"currency": "VND",
"account_status": "ACTIVATED",
"create_time": 1551155326.708945,
"parent_id": "84xxxxxxxxx",
"home": {},
"city_id": ["SGN"]
}
]
Status-Code: 200 OK
Các lỗi thường gặp
Mã lỗi | Nội dung | Mô tả |
---|---|---|
401 | NOT_AUTHORIZED | Token không hợp lệ |
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 |