Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

Organization Members

These are all methods on the Organization class that allow you to manage the members of an organization.

getMemberships()

Retrieve the members of the currently active organization.

function getMemberships(params?: GetMembersParams): Promise<ClerkPaginatedResponse<OrganizationMembership>>;

GetMembersParams

NameTypeDescription
initialPage?numberA number that can be used to skip the first n-1 pages. For example, if initialPage is set to 10, it is will skip the first 9 pages and will fetch the 10th page.
pageSize?numberA number that indicates the maximum number of results that should be returned for a specific page.
role?arrayThe roles of memberships that will be included in the response. For example, ['org:admin', 'org:member']

GetMembershipsParams was updated to GetMembersParams in September, 2023. The limit and offset parameters are now deprecated.

getMemberships() returns

TypeDescription
Promise<ClerkPaginatedResponse<OrganizationMembership>>A Promise which resolves with a ClerkPaginatedResponse of OrganizationMembership objects.

addMember()

Adds a user as a member to an organization. A user can only be added to an organization if they are not already members of it and if they already exist in the same instance as the organization.

Please note that only administrators can add members to an organization.

function addMember(params: AddMemberParams): Promise<OrganizationMembership>;

AddMemberParams

NameTypeDescription
userIdstringThe ID of the user that will be added as a member to the organization.
rolestringThe role that the user will have in the organization.

addMember() returns

TypeDescription
Promise<OrganizationMembership>A Promise which resolves with theOrganizationMembership objects.

updateMember()

Updates a member based on the userId. Currently, only a user's role can be updated.

function updateMember(params: UpdateMembershipParams): Promise<OrganizationMembership>;

UpdateMembershipParams

NameTypeDescription
userIdstringThe user identifier.
rolestringThe role of the new member.

updateMember() returns

TypeDescription
Promise<OrganizationMembership>A Promise which resolves with the updated OrganizationMembership objects.

removeMember()

Removes a member from the organization based on the userId.

function removeMember(userId: string): Promise<OrganizationMembership>;

removeMember() params

NameTypeDescription
userIdstringThe user identifier.

removeMember() returns

TypeDescription
Promise<OrganizationMembership>A Promise which resolves with the removed OrganizationMembership object.

What did you think of this content?

Clerk © 2024