I want to create a new Folder in my BIM360 Project by using the C# SDK. Unfortunately, I do not manage to get a ResourceId to define my parent folder. I tried it like this:
CreateFolder folder = new CreateFolder();
string root_folder = "...";
folder.Data.Relationships.Parent.Data.Id = root_folder;
But the parent id must be from type ResourceId and I only have a string which contains the id. Until now, I have not found a conversion between string and resource id(ResourceId only supports the standard-constructor)
I have also tried to make a GET request on the root folder to receive all its information. But there I also receive an id as a string. So how am I supposed to create a resource id for my folder?
And just one little additional question: If I succeed in creating a folder, how can I manage the permission? Is it even possible to do so via webservice?
Thanks in advance