Skip to content

GetCardsForMemberAsync

Rasmus Wulff Jensen edited this page Nov 1, 2023 · 6 revisions

Back to Card Features

Get all Cards a Member is on (across multiple boards)

Signature

/// <summary>
/// Get all Cards a Member is on (across multiple boards)
/// </summary>
/// <param name="memberId">Id of Member</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns></returns>
public async Task<List<Card>> GetCardsForMemberAsync(string memberId, CancellationToken cancellationToken = default) {...}

Examples

var memberId = "63c939a5cesdfseeec9e89d";
var cardsMemberIsAssignedTo = await _trelloClient.GetCardsForMemberAsync(memberId);
Clone this wiki locally