-
-
Notifications
You must be signed in to change notification settings - Fork 4
AddListAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
3 revisions
Add a List to a Board
/// <summary>
/// Add a List to a Board
/// </summary>
/// <remarks>
/// The Provided BoardId, the list should be added to need to be the long version of the BoardId as API does not support the short version
/// </remarks>
/// <param name="list">List to add</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Create list</returns>
public async Task<List> AddListAsync(List list, CancellationToken cancellationToken = default) {...}string boardId = "343mfk4k4f49kf4k49k4";
List addedList = await TrelloClient.AddListAsync(new List("My Cool List", boardId));If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')