curl --location --request PUT 'http://localhost:3000/user/change-password' \
--header 'Content-Type: application/json' \
--data-raw '{
"currentPassword": "test123456",
"newPassword": "test123456"
}'
{
"success": true,
"message": "User password updated successfully"
}