Skip to content
Rasmus Wulff Jensen edited this page Nov 1, 2023 · 5 revisions

Back to Checklist Features

Get a Checklist with a specific Id

Signature

/// <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) {...}

Examples

var checklistId = "45345345dedd3e33c9e9dd";

var checklist = await _trelloClient.GetChecklistAsync(checklistId);
Clone this wiki locally