-
Notifications
You must be signed in to change notification settings - Fork 4
GetChecklistAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
5 revisions
Get a Checklist with a specific Id
/// <summary>
/// Get a Checklist with a specific Id
/// </summary>
/// <param name="checkListId">Id of the Checklist</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Checklist</returns>
public Task<Checklist> GetChecklistAsync(string checkListId, CancellationToken cancellationToken = default) {...}
var checklistId = "45345345dedd3e33c9e9dd";
var checklist = await _trelloClient.GetChecklistAsync(checklistId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')