Is there any documentation on the SDK? There is a github page but nothing is truly documented.
For say an box application using JWT what access scope is by default? Trying to add a file doesnt make much sense.
BoxFileRequest req = new BoxFileRequest()
{
Name = "example1.pdf",
Parent = new BoxRequestEntity() { Id = "0" }
};
var newFile = await boxClient.FilesManager.UploadAsync(req, memoryStream);
Seems that folder 0 doesnt exist? Isnt this the default folder?
Is there a way to list the folders without giving a folder id?
