-
Notifications
You must be signed in to change notification settings - Fork 4
GetMembersOfBoardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
3 revisions
Get the Members (users) of a board
/// <summary>
/// Get the Members (users) of a board
/// </summary>
/// <param name="boardId">Id of the Board (in its long or short version)</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>List of Members</returns>
public async Task<List<Member>> GetMembersOfBoardAsync(string boardId, CancellationToken cancellationToken = default) {...}
var boardId = "63c939a5cea0cb006dc9e88b";
List<Member> membersOfBoard = await _trelloClient.GetMembersOfBoardAsync(boardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')