-
Notifications
You must be signed in to change notification settings - Fork 4
GetBoardsForMemberAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
Get the Boards that the specified member has access to
/// <summary>
/// Get the Boards that the specified member has access to
/// </summary>
/// <param name="memberId">Id of the Member to find boards for</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Active Boards there is access to</returns>
public async Task<List<Board>> GetBoardsForMemberAsync(string memberId, CancellationToken cancellationToken = default) {...}
string memberId = "63c939a5cea0cb006dc9e89d";
List<Board> boardsForMember = await _trelloClient.GetBoardsForMemberAsync(memberId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')