Allows the user to change their password by providing their username, old password, and new password.
Request
Body Params application/json
{
"username": "string",
"oldpassword": "string",
"newpassword": "string"
}
Request Code Samples
curl --location --request POST 'https://gateway.storeharmony.com/cloudapi/user//changePassword' \
--header 'sessiontoken;' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"oldpassword": "string",
"newpassword": "string"
}'
Responses
*/*
Password changed successfully.
{
"success": true,
"message": "string"
}
Modified at 2025-03-27 14:31:04