-
Notifications
You must be signed in to change notification settings - Fork 4
GetCardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
11 revisions
Get a Card by its Id
Tip: Use this video to find the Id of a Card
/// <summary>
/// Get Card by its Id
/// </summary>
/// <param name="cardId">Id of the Card</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Card</returns>
public async Task<Card> GetCardAsync(string cardId, CancellationToken cancellationToken = default) {...}
//Get a card with a specific Id
string cardId = "342423423423423";
TrelloDotNet.Model.Card card = await _trelloClient.GetCardAsync(cardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')