Express Object Form

I’m adding express entries programmatically, I can add a form as described in documentation:

$form = $student->buildForm('Form');
$form->addFieldset('Basics')
    ->addAttributeKeyControl('first_name')
    ->addAttributeKeyControl('last_name')
    ->addTextControl('', 'This is just some basic explanatory text.')
    ->addAttributeKeyControl('bio');
$form = $form->save();

That works fine, but I have times I want to go back and add some additional entries to the existing form and fieldset. I haven’t found how to do that, any help on it would be appreciated.

Thanks

It’s a holiday weekend here it might take a bit for a reply from a developer! Cheers!

Have you tried the steps in “The Express Entry Builder” section?

Yeah, adding and retrieving data isn’t a problem, it’s programmatically adding forms I am having trouble with.