OCS permissions API

Hi,

We have a client that is currently building a provisioning application, up to Nextcloud, using the OCS apis.
At the moment, he is able to create and manage GroupFolders, but the permissions part is missing.
What i’ve seen is that this seems to be only available via a DAV PROPATCH request or through occ groupdfolders:permissions command.

The DAV PROPPATCH is not very usable, as the path concerned by the PATCH need to include a user, already accessing to the folder from the groupfolders. This means your app need to take in account who is admin on wich groupfolder, identify as this person (not secure) and make the PROPPATCH.

The occ groupfolders:permissions covers the needs by its functionnalities. But it is not accessible through a distant API call.

My question is : is there a plannified task concerning these OCS API routes with groupfolders in the near future ?

Thanks,

The underling code called by occ groupfolders:permissionsis exposed via the documented Groupfolders API best as I can tell. And it looks to be used by the front-end for ACL management.

The occ groupfolders:permissions cover a lot of functionalities.
What you’ve mentionned are used in the “Settings” application (section of groupfolders) : what group is allowed to set advanced permissions on groupfolders. What we need is the part used in the “Files” application, on the sharing sidebar, and that allow to set advanced permissions on folders for groups and/or users (read, write, create, delete, share). This part is not covered (at the moment) by OCS API.