Updates the authenticated user's password.
Request Body
current_password, new_password.Authorization
Returns
{"updated": true} on success or an error object with details.Current Version
curl --location -g --request PATCH 'https:///auth-service/api/v2/users/me/password' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "current_password": "stringst",
    "new_password": "stringst"
}'{
    "success": true,
    "message": "Password updated successfully",
    "data": {
        "updated": true
    }
}