updateOrganizationMembership()
Updates a user's organization membership parameters.
const organizationId = 'my-organization-id';
const userId = 'my-user-id';
const role = 'role-to-assign-user';
const organization = await clerkClient.organizations.updateOrganizationMembership({organizationId, userId, role});
UpdateOrganizationMembershipParams
Name | Type | Description |
---|---|---|
organizationId | string | The organization ID of the organization a user is being added to. |
userId | string | The user ID of the user being added to the organization. |
role | OrganizationMembershipRole | The role to assign the added user within the organization. |