Kích hoạt tài khoản con
Kích hoạt tài khoản con, xác nhận liên kết với tài khoản cha
- cURL
- JavaScript
curl --location 'https://partner-apistg.ahamove.com/v3/accounts/childs/<child_id>/activate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
"activation_code": "1234"
}'
const myHeaders = new Headers();
myHeaders.append('Content-Type', 'application/json');
myHeaders.append('Authorization', 'Bearer <token>');
const raw = JSON.stringify({
activation_code: '2114',
});
const requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow',
};
fetch(
'https://partner-apistg.ahamove.com/v3/accounts/childs/<child_id>/activate',
requestOptions
)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
HTTP Request
POST https://partner-apistg.ahamove.com/v3/accounts/childs/849xxxxxxxx/activate
Headers
Parameter | Value | Yêu cầu | Mô tả |
---|---|---|---|
Content-Type | application/json | Có | |
Authorization | Bearer <token> | Có | Token của tài khoản cha |
Query Parameters
Parameter | Type | Yêu cầu | Mô tả |
---|---|---|---|
child_id | String | Có | Số điện thoại của tài khoản con |
activation_code | String | Có | Mã kích hoạt được gửi đến Tài khoản con dùng để kích hoạt tài khoản liên kết cha-con |
Response
JSON response example:
{
"_id": "849xxxxxxxx",
"name": "Nguyễn Văn A",
"partner": "ahamove",
"parent_id": "84912345678",
...
}
Status-Code: 200 OK
Errors
Mã code | Nội dung | Mô tả |
---|---|---|
404 | NOT_FOUND | - Không tìm thấy token - Không tìm thấy child_id |
401 | NOT_AUTHORIZED | - Tài khoản cha chưa được gắn partner - Tài khoản cha đang là tài khoản con thuộc một tài khoản cha khác |
406 | INVALID_ACTIVATION_CODE | Mã kích hoạt không hợp lệ |
409 | PARENT_ACCOUNT_EXISTED | Tài khoản con đã tồn tại tài khoản cha |
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 |