Hey,
I am using the .NET SDK and I found something odd that I wanted to share.
I am using CreateFolderV2Async to create a folder on the root namespace and then I would like to save its namespace id/shared folder id, but if I use it like this:
var result = await dbc.Files.CreateFolderV2Async("name");and then get the shared folder id from the result like this:
result.Metadata.AsFolder.SharedFolderId;
It is null. I have to do a seperate request to get the ID.
Wondering if this is a design decision or just something unplanned.