Status Code | Title | Description |
---|
400 | BAD_REQUEST | Bad request, please check and try again. |
400 | INVALID_EMAIL | Email không đúng định dạng |
409 | EMAIL_EXISTED | Email đã tồn tại |
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"name": "ABC",
"email": "abc@gmail.com"
}
Request Code Samples
curl --location --request PUT 'https://partner-apistg.ahamove.com//v3/accounts' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "ABC",
"email": "abc@gmail.com"
}'
Responses
application/json Modified at 2025-09-24 02:04:55