> 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: rejectJoinRequests(groupId: string, rejections: Array, options: Options) # Method package: wixGroupsBackend # Method menu location: wixGroupsBackend --> JoinRequests --> rejectJoinRequests # Method Link: https://dev.wix.com/docs/velo/apis/wix-groups-backend/join-requests/reject-join-requests.md # Method Description: Rejects requests to join a group. > **Note: This function is only relevant for private groups.** The `rejectJoinRequests()` function returns a Promise that resolves when the site member's request to join a group is rejected. Only site admins or group admins can reject site member requests to join the 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 reject 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. ## Reject a request to join a group ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { joinRequests } from 'wix-groups-backend'; // Sample groupId value: // "6z2334b13bb4b44569a7cdf292j227" // // Sample rejections value: // [ // { // memberId: '77490611-53bb-4b47-a7cc-ca9a1335133b', // reason: 'This group is for college students only.' // } // ] export const myRejectJoinRequestsFunction = webMethod(Permissions.Anyone, (groupId, rejections) => { return joinRequests.rejectJoinRequests(groupId, rejections) .then((rejectedJoinRequests) => { console.log('Rejected ', rejectedJoinRequests); }) .catch((error) => { console.error(error); }); }); /* Promise resolves to: * [ * { * "memberId": "77490611-53bb-4b47-a7cc-ca9a1335133b" * "_createdDate": "Mon July 12 2020 13:15:10 GMT+0300" * "status": "REJECTED" * "rejectionReason": "This group is for college students only." * } * ] */ ``` ---