I am using version 4.2 of the BO RESTful SDK, upgrading an application from the 3.X Java SDK. In the application, there is a requirement for creating a new folder in the BO environment. In the old Java SDK, this was achievable like this:
IFolder favoritesFolder = infoStore.getMyFavoritesFolder();
IInfoObject newFolder = favoritesFolder.add(CeKind.FOLDER);
In the documentation for the RESTful SDK, I can't seem to find a parallel for creating a new folder like this. Is it possible to create a folder programatically in the new SDK?