Skip to main content
Version: 3.0.0

Update User Profile

Update the personal information of a user account

curl --location --request PUT 'https://partner-apistg.ahamove.com/v3/accounts' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
"name": "ABC",
"email": "abc@gmail.com"
}'

HTTP Request

PUT https://partner-apistg.ahamove.com/v3/accounts

Headers

ParameterValueRequiredDescription
Content-Typeapplication/jsonYes
AuthorizationBearer <token>YesToken of the user account

Query Parameters

ParameterTypeRequiredDescription
nameStringNoUser's name
emailStringNoEmail address

Response

JSON response example:

{}

Status-Code: 200 OK

Errors

CodeTextDescription
401NOT_AUTHORIZEDInvalid token
406Not AcceptableInvalid email format
409EXISTED_EMAILEmail already exists
500INTERNAL_SERVER_ERRORWe had a problem with our server. Try again later
503SERVICE_UNAVAILABLEWe're temporarily offline for maintenance. Please try again later