Set user password to finish registration.
Request
Body Params application/json
{
"token": "string",
"password": "stringst"
}
Request Code Samples
curl --location --request POST '/api/v2/user/password' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "string",
"password": "stringst"
}'
Responses
application/json
Successful result for setting user password
{
"access_token": "string",
"refresh_token": "string",
"expires_in": 0,
"token_type": "string",
"mobile_user_security_key": "string",
"name": "string",
"first_name": "string",
"last_name": "string",
"email": "string",
"user_uuid": "string",
"firebase_uid": "string",
"profile": {
"is_default_image": true,
"image_url": "string"
},
"is_first": true,
"is_social_login": 0
}
Modified at 2025-07-22 23:37:47