Loading model using python script, into workspace with the workspace settings

I can load the model using

self._send_command(command='callMethod', data={'Identifier': self._workspace_id, 'methodName': "LoadSystem", 'args': [system_UUID]})

But it loads without the workspace settings, only the model.

How can I load the model with the saved workspace settings?

Hi again,
This is the new API version:
@api_method
def LoadSystem(
self, system_guid: str, load_workspace_settings: bool = False
) → dict:
“”“Load the given system from the cloud using the guid. The method does not load the system directly but checks if it is possible.
:param system_guid: System guid to be loaded
:param load_workspace_settings: Tells if the workspace parameters should be loaded or not from the system file
:returns: Success
“””
So you can just add a new param with true value like this:
self._send_command(command=‘callMethod’, data={‘Identifier’: self._workspace_id, ‘methodName’: “LoadSystem”, ‘args’: [system_UUID, true]})

Regards,