> 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: unassignRole(identifiers: Identifiers, role: string, options: Options) # Method package: wixGroupsBackend # Method menu location: wixGroupsBackend --> Roles --> unassignRole # Method Link: https://dev.wix.com/docs/velo/apis/wix-groups-backend/roles/unassign-role.md # Method Description: Unassigns a role from group members. > **Note:** This function is only relevant for site admins, and group members with group admin permissions. The `unassignRole()` function returns a Promise that resolves to the unassigned role after it has successfully been unassigned. This function only applies to admin roles. Using this function with member roles returns an error. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Unassign a role to a group member ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { roles } from 'wix-groups-backend'; // Sample identifiers value: // { // memberIds: ['7fe8e9e1-d050-4c86-9684-e7f231600a34'], // groupId: '0261a737-2361-4468-a3b1-5ec2b0667836.' // } // // Sample role value: // 'ADMIN' // // Sample options value: // { // suppressAuth: true // } export const unassignRole = webMethod(Permissions.Anyone, async (identifiers, role, options) => { try { const response = await roles.unassignRole(identifiers, role, options); console.log(response); } catch (error) { console.error(error); } }); /* Promise resolves to: * role: "MEMBER" */ ``` ---