Xóa tài khoản con
Xóa tài khoản con khỏi tài khoản cha, tài khoản cha cần phải có trường thông tin "partner"
HTTP Request
- cURL
- JavaScript
curl -X GET \
'https://apistg.ahamove.com/v1/partner/remove_child_account?token=<TOKEN_STG>&child_id=84xxxxxxxxx' \
-H 'cache-control: no-cache'
var requestOptions = {
method: 'GET',
redirect: 'follow',
};
fetch(
'https://apistg.ahamove.com/v1/partner/remove_child_account?token=<TOKEN_STG>&child_id=84xxxxxxxxx',
requestOptions
)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.log('error', error));
GET https://apistg.ahamove.com/v1/partner/remove_child_account
Query Parameters
Parameter | Type | Yêu cầu | Mô tả |
---|---|---|---|
token | String | Có | Token của tài khoản cha |
child_id | String | Có | ID của tài khoản con |
Response
JSON response example:
{}
Status-Code: 200 OK
Errors
Code | Text | Description |
---|---|---|
404 | Not Found | Không tìm thấy token, Không tìm thấy child_id |
401 | Unauthorized | Tài khoản cha không có trường thông tin "partner" field hoặc tài khoản con không thuộc Đối tác này |
402 | Not allowed | Số dư tài khoản con < 0 or tài khoản con đang đặt hàng liên tục |
406 | Not Acceptable | child_id không hợp lệ (Không tìm thấy child_id trong 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 |