Engine.addModuleStateToUserPreset("name here");
- 
So do I only need to issue this commend once in my app, or each time the user wants to save a preset?
 - 
@Lindon Just once, in on init.
 - 
If you have several modules to do you can use a loop:
// Save EQs with presets const eqIds = Synth.getIdList("Parametriq EQ"); for (id in eqIds) Engine.addModuleStateToUserPreset(id); - 
@d-healey thanks.