> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: removeGroupMembers(identifiers: IdentifiersRemoveGroupMembers, options: Options) # Method package: wixGroupsBackend # Method menu location: wixGroupsBackend --> Members --> removeGroupMembers # Method Link: https://dev.wix.com/docs/velo/apis/wix-groups-backend/members/remove-group-members.md # Method Description: Removes members from a group. The `removeGroupMembers()` function returns a Promise that resolves when the member is removed from the group. > **Note:** Only site admins and group admins can remove members from their group. However, if the `suppressAuth` option is set to `true`, all permissions are overwritten and all site members (including non-group members) can remove members from a group. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Remove a site member from a group ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { members } from 'wix-groups-backend'; // Sample identifiers value: // { // groupId: '0261a737-2361-4468-a3b1-5ec2b0667836', // memberIds: ['937cd3db-e9be-4980-93c1-a6d767a11050', '7fe8e9e1-d050-4c86-9684-e7f231600a34'] // } // // Sample options value: // { // suppressAuth: true // } export const myRemoveGroupMembersFunction = webMethod(Permissions.Anyone, (identifiers, options) => { return members.removeGroupMembers(identifiers, options) .then((removedGroupMembers) => { console.log('Removed group members'); }) .catch((error) => { console.error(error); }); }); ``` ---