Hi,
I'm trying to upload files to team folder using the API V2, but I not getting it. I'm able to upload to the user folder, but I can't upload to Team folder.
I'm also able to list the team folders, using:
using (var dbxTeams = new DropboxTeamClient(accessTokenTeam))
{
try
{
var list = await dbxTeams.Team.TeamFolderListAsync();
foreach (var folder in list.TeamFolders)
{
Console.WriteLine($"Team Folder: {folder.Name}");
Console.WriteLine($"Team Folder: {folder.TeamFolderId}");
}
}
But how to upload files to them? The DropboxTeamClient class don't have methods to do so.