I need to perform complex batch operations with permission entities, for example, next business logic is required for my application to do:
1) Split a list of students onto a set of random lists with same size
2) Create a section group for each group, that means:
2.1) Remove all permissions that are not 'Owner'
2.2) Create permissions for the students that are in this group
As you can see, the process might be quiet complicated for leaving it to be performed on the app-side, but the official docs say nothing about batch delete based on OData queries or something like that.
So the question is next: is there any way to simplify kind of these algorithms using some batch-update/delete/create operations of the OneNote API ?
Thx in advance.