> 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: approveJoinRequests(identifiers: Identifiers, options: Options) # Method package: wixGroupsBackend # Method menu location: wixGroupsBackend --> JoinRequests --> approveJoinRequests # Method Link: https://dev.wix.com/docs/velo/apis/wix-groups-backend/join-requests/approve-join-requests.md # Method Description: Approves requests to join a group. > **Note: This function is only relevant for private groups.** The `approveJoinRequests()` function returns a Promise that resolves when a site member's request to join a group is approved. Only site admins and group admins can approve site member requests to join a group, unless the group setting, `membersCanApprove` is set to `true`. > **Note:** If the `suppressAuth` option is set to `true`, all permissions are overwritten, and all site members (including non-group members) can approve site member requests to join a group. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Approve a request to join a group ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { joinRequests } from 'wix-groups-backend'; // Sample identifiers value: // { // groupId: '77490611-53bb-4b47-a7cc-ca9a1335133b', // memberIds: ['124cd3db-e9be-4980-93c1-a6d767a11099', '2f48e9e1-d050-4c86-9684-e7f231600f29', '772cd3db-e9be-560-93c1-a6d767a11670'] // } // // Sample options value: // { // suppressAuth: true // } export const myApproveJoinRequestsFunction = webMethod(Permissions.Anyone, (identifiers, options) => { return joinRequests.approveJoinRequests(identifiers, options) .then((approvedJoinRequests) => { return approvedJoinRequests; }) .catch((error) => { console.error(error); }); }); /* Promise resolves to: * [ * { * "memberId": "124cd3db-e9be-4980-93c1-a6d767a11099" * "_createdDate": "Fri Oct 24 2021 22:45:50 GMT+0300" * "status": "APPROVED" * }, * { * "memberId": "2f48e9e1-d050-4c86-9684-e7f231600f29" * "_createdDate": "Wed May 14 2021 10:05:20 GMT+0300" * "status": "APPROVED" * }, * { * "memberId": "772cd3db-e9be-560-93c1-a6d767a11670" * "_createdDate": "Sun July 11 2020 03:25:30 GMT+0300" * "status": "APPROVED" * } * ] */ ``` ---