> 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: assignRole(identifiers: Identifiers, role: string, options: Options) # Method package: wixGroupsBackend # Method menu location: wixGroupsBackend --> Roles --> assignRole # Method Link: https://dev.wix.com/docs/velo/apis/wix-groups-backend/roles/assign-role.md # Method Description: Assigns a role to group members. > **Note:** This function is only relevant for site admins, and group members with group admin permissions. The `assignRole()` function returns a Promise that resolves to the newly-assigned role after it has successfully been assigned. Assigning a role overrides an existing role. For example, assigning a member role to an admin unassigns their admin role. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Assign 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 assignRole = webMethod(Permissions.Anyone, (identifiers, role, options) => { return roles.assignRole(identifiers, role, options) .then((response) => { console.log(response); }) .catch((error) => { console.error(error); }); }); /* Promise resolves to: * role: "ADMIN" */ ``` ---