Add child account to parent account#
Parent account need be enabled by "partner" field. An SMS code will be sent to child account for verification.Authentication#
Request body#
field | required |
---|
child_id | true |
Sample curl#
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"child_id": "849xxxxxxxx"
}
Request Code Samples
curl --location --request POST 'https://partner-apistg.ahamove.com//v3/accounts/childs' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"child_id": "849xxxxxxxx"
}'
Responses
application/json Modified at 2025-09-24 02:04:55