Changing User Password
With an app admin token, you can change a user's password without providing his/her old password. This feature will be useful to support users who have forgotten their passwords.
Please check the following example. Note that only a new password is being specified. This call requires an admin token. Please refer Admin Features to learn how to get the admin token.
curl -v -X PUT \
-H "Authorization: Bearer {APP_ADMIN_TOKEN}" \
-H "Content-Type: application/vnd.kii.ChangePasswordRequest+json" \
"https://api-jp.kii.com/api/apps/{APP_ID}/users/{USER_ID}/password" \
-d '{
"newPassword": "{NEW_PASSWORD}"
}'