Skip to main content
Question

Documentation

  • May 22, 2025
  • 1 reply
  • 8 views

Forum|alt.badge.img

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? 

 

1 reply

Forum|alt.badge.img

Hi Nick, 

We have a ton of getting started materials and documentation on our developer site. For SDKs, we having example code in the API reference sections, as well as the docs sections of each respective code base in Github. Here is python's as an example. 

Hope this helps, 

Alex, Box Developer Advocate