-
Notifications
You must be signed in to change notification settings - Fork 4
GetCustomFieldsOnBoardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
Get Custom Fields of a Board
/// <summary>
/// Get Custom Fields of a Board
/// </summary>
/// <param name="boardId">Id of the Board (long version)</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>List of CustomFields</returns>
public async Task<List<CustomField>> GetCustomFieldsOnBoardAsync(string boardId, CancellationToken cancellationToken = default) {...}
var boardId = "641ddde2e37dc99ab1ccc988";
List<CustomField> customFieldsOnBoardAsync = await _trelloClient.GetCustomFieldsOnBoardAsync(boardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')