Automatic Changing of Parameters in an Existing Model

Hello,
Thank you for the quick response.

I would like to change the list of global parameters in my model, or partially change it. That is, the values which are then connected to my nodes etc. in the model, with which I have so far performed a "manual" parameterization of the model.

In API 1 the function was called: I also got the function running here.
class GlobalParameter():

@staticmethod  
def AddParameter(  
        no: int = 1,  
        name: str = '',  
        symbol: str = '',  
        unit_group=GlobalParameterUnitGroup.LENGTH,  
        definition_type=GlobalParameterDefinitionType.DEFINITION_TYPE_VALUE,  
        definition_parameter: list = None,  
        comment: str = '',  
        params: dict = None,  
        model = Model):

Thank you very much for the feedback