> 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: listGroupMembers(groupId: string, paging: Paging, options: Options) # Method package: wixGroupsBackend # Method menu location: wixGroupsBackend --> Members --> listGroupMembers # Method Link: https://dev.wix.com/docs/velo/apis/wix-groups-backend/members/list-group-members.md # Method Description: Lists all members of a group. The `listGroupMembers()` function returns a Promise that resolves to a list of up to 100 group members. Sorts by default to `joinedDate` in descending order. > **Notes:** > + For `SECRET` groups, only site admins, group admins, and group members can see the list of group members. However, if the `suppressAuth` option is set to `true`, all permissions are overwritten, and all site members (including non-group members) can see the list of group members. > + This function's parameters are positional, and must be specified in the sequence shown in the syntax below. When specifying a parameter, use `null` as a placeholder for any unspecified parameters. For example, to specify `limit` only, call `listGroupMembers(groupId, paging, null)`. To specify `supressAuth` only, call `listGroupMembers(groupId, null, options)`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## List all site members in a group ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { members } from 'wix-groups-backend'; // Sample groupId value: // '6355cf94-bd3a-466d-9d61-980bcb7458ea' export const myListGroupMembersFunction = webMethod(Permissions.Anyone, (groupId) => { return members.listGroupMembers(groupId) .then((groupMembersResults) => { const groupMembersRole = groupMembersResults.members[0].role; return groupMembersResults; }) .catch((error) => { console.error(error); }); }); /* Promise resolves to: * members: [ * { * "role": "ADMIN" * "memberId": "437cd3db-e9be-4980-93c1-a6d767a11050" * "joinedDate": "Sun Aug 01 2021 12:32:35 GMT+0300" * }, * { * "role": "MEMBER" * "memberId": "7fe8e9e1-d050-4c86-9684-e7f231600a34" * "joinedDate": "Tues Jun 30 2019 10:09:33 GMT+0300" * } * ], * metadata: * { * "length": 2 * "tooManyToCount": false * "totalCount": 5 * } */ ``` ## List all site members in a group using options ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { members } from 'wix-groups-backend'; // Sample groupId value: // '6355cf94-bd3a-466d-9d61-980bcb7458ea' // // Sample paging value: // { // limit: 2, // skip: 1 // } // // Sample options value: // { // suppressAuth: true // } export const myListGroupMembersFunction = webMethod(Permissions.Anyone, (groupId, paging, options) => { return members.listGroupMembers(groupId, paging, options) .then((groupMembersResults) => { const groupMembersRole = groupMembersResults.members[0].role; return groupMembersResults; }) .catch((error) => { console.error(error); }); }); /* Promise resolves to: * members: [ * { * "role": "ADMIN" * "memberId": "437cd3db-e9be-4980-93c1-a6d767a11050" * "joinedDate": "Sun Aug 01 2021 12:32:35 GMT+0300" * }, * { * "role": "MEMBER" * "memberId": "7fe8e9e1-d050-4c86-9684-e7f231600a34" * "joinedDate": "Tues Jun 30 2019 10:09:33 GMT+0300" * } * ], * metadata: * { * "length": 2 * "tooManyToCount": false * "totalCount": 5 * } */ ``` ---