Skip to content

GetMembersOfOrganizationAsync

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

Back to Member Features

Get the Members (users) of an Organization (aka Workspace)

Signature

/// <summary>
/// Get the Members (users) of an Organization
/// </summary>
/// <param name="organizationId">Id of the Organization</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>List of Members</returns>
public async Task<List<Member>> GetMembersOfOrganizationAsync(string organizationId, CancellationToken cancellationToken = default) {...}

Examples

var organizationId = "dasdasdas333d33dedc8e332";

List<Member> membersOfOrganization = await _trelloClient.GetMembersOfOrganizationAsync(organizationId);

Clone this wiki locally