-
Notifications
You must be signed in to change notification settings - Fork 4
GetMemberAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Get a Member with a specific Id
/// <summary>
/// Get a Member with a specific Id
/// </summary>
/// <param name="memberId">Id of the Member</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Member</returns>
public async Task<Member> GetMemberAsync(string memberId, CancellationToken cancellationToken = default) {...}
var memberId = "63d1239e857afaa8b003c633";
Member member = await _trelloClient.GetMemberAsync(memberId);
string fullName = member.FullName;
string username = member.Username;
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')