-
Notifications
You must be signed in to change notification settings - Fork 4
GetOrganizationsForMemberAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Get the Organizations that the specified member has access to
/// <summary>
/// Get the Organizations that the specified member has access to
/// </summary>
/// <param name="memberId">Id of the Member to find organizations for</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Organizations there is access to</returns>
public async Task<List<Organization>> GetOrganizationsForMemberAsync(string memberId, CancellationToken cancellationToken = default)
string memberId = "34343l4343jjk3343jk43kj";
List<Organization> organizations = await _trelloClient.GetOrganizationsForMemberAsync(memberId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')