Ron Harlev
Ron Harlev

Reputation: 16703

Change board permission with Trello with Trello.NET

I'm using Trello.net to manage Trello boards through their API.

One thing I need to do, is change a new board I created to be public.

This code doesn't seem to work

myBoard.Prefs.PermissionLevel = PermissionLevel.Public;
trello.Boards.Update(myBoard);

Upvotes: 1

Views: 259

Answers (1)

dillenmeister
dillenmeister

Reputation: 1647

As of release 0.5.5-beta Trello.NET supports this. Use Trello.Boards.ChangePermissionLevel. More info here.

Upvotes: 2

Related Questions