-
-
Notifications
You must be signed in to change notification settings - Fork 5
GetCardsOnBoardAsync
Rasmus Wulff Jensen edited this page Jun 7, 2023
·
8 revisions
Get all open cards on un-archived lists on a board
/// <summary>
/// Get all open cards on un-archived lists on a board
/// </summary>
/// <param name="boardId">Id of the Board (in its long or short version)</param>
/// <param name="cancellationToken">CancellationToken</param>
/// <returns>List of Cards</returns>
public async Task<List<Card>> GetCardsOnBoardAsync(string boardId, CancellationToken cancellationToken = default) {...}string boardId = "63c939a5cea0cb006dc9e88b";
List<Card> cardsOnBoardAsync = await _trelloClient.GetCardsOnBoardAsync(boardId);AddCardAsyncGetCardAsyncGetCardsOnBoardFilteredAsyncGetCardsInListAsyncGetCardsForMemberAsyncUpdateCardAsyncArchiveCardAsyncReOpenCardAsyncArchiveAllCardsInListAsyncMoveAllCardsInListAsyncMoveCardToListAsyncDeleteCardAsyncSetDueDateOnCardAsyncSetStartDateOnCardAsyncSetStartDateAndDueDateOnCardAsync
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')