Deep save in bulk

Hi there
Is there a way to do a deep save in bulk?
I have 2 tables related by 1:1 relation ship and I need to do save of 5 records in both tables at the same time. I know that deep save can save a record in both related tables in one shot as multi transactions but how can I do one save of 5 records (instead of looping and doing 5 calls)?
Thanks
Adam

Hello @Deress_Asghedom

There is no deep save in bulk. If you need to save multiple sets of related records, you might still have to loop through each set of parent-child objects and perform individual deep save operations for each set.

Alternatively, to what @sergey.kuk wrote, you could use the Transaction API to group multiple save operations in a single API request.

Regards,
Mark