> 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 # Resource: Create Group Requests # Type: Group Request Object # Link: https://dev.wix.com/docs/api-reference/crm/community/groups/create-group-requests/group-request-object.md ## Description: A group request is a site member's request for a site admin to create a group. You can approve, reject, or view group requests. Learn more about [Wix Groups](https://support.wix.com/en/article/wix-groups-about-groups). ## Schema: ```json Type: Group Request Object | type: GroupRequest Description: A group request is a site member's request for a site admin to create a group. You can approve, reject, or view group requests. Learn more about [Wix Groups](https://support.wix.com/en/article/wix-groups-about-groups). - name: id | type: string | description: Group request ID. - name: value | type: string | description: - name: group | type: Group | description: Group requested for creation. - name: id | type: string | description: Group ID. - name: slug | type: string | description: A unique part of a group's URL, for example `https:/example.com/groups/slug`. - name: privacyStatus | type: string | description: Group privacy status. enum: UNKNOWN, PUBLIC, PRIVATE, SECRET - name: name | type: string | description: Group name. - name: description | type: string | description: Group description in [DraftJS](https://draftjs.org) format. - name: teaser | type: string | description: Group teaser. - name: memberTitle | type: string | description: What group members are called, for example `Coworkers`, `Friends`, or `Students`. - name: coverImage | type: CoverImage | description: Cover image. You cannot upload your own cover image. - name: image | type: Image | description: Cover image. - name: position | type: Position | description: Position of the corner of the cover image (or logo). - name: mobilePosition | type: Position | description: Position of the corner of the cover image (or logo) for mobile browser. - name: altText | type: string | description: Alternative text is typically a relatively short phrase that describes what the image depicts. The alternative text is used: + If the browser cannot display the image. + If the user is utilizing a screen reader. + By search engines to understand what images are on your site. - name: settings | type: GroupSettings | description: Group specific settings. These settings can also be found in [a site's Dashboard](https://www.wix.com/my-account/site-selector/?buttonText=Select%20Site&title=Select%20a%20Site&autoSelectOnSingleSite=true&actionUrl=https:%2F%2Fwww.wix.com%2Fdashboard%2F%7B%7BmetaSiteId%7D%7D%2Fwix-groups/settings?). - name: membersCanInvite | type: boolean | description: __Deprecated.__ Use `allowedToInviteMembers` instead. Whether regular members are permitted to invite new members. If `false`, only admins can invite members. Defaults to `true`. - name: membersCanApprove | type: boolean | description: __Deprecated.__ Use `allowedToApproveJoinRequests` instead. Whether all group members are permitted to approve join group requests. If `false`, member approval is limited to the admins. - name: welcomeMemberPostEnabled | type: boolean | description: Whether a daily post about new members is enabled. - name: groupDetailsChangedPostEnabled | type: boolean | description: Whether an automatic post about changing the group details is enabled. - name: showMemberList | type: boolean | description: Whether all members can see the full member list. - name: allowedToInviteMembers | type: string | description: Determines who can invite members to the group - name: allowedToApproveJoinRequests | type: string | description: Determines who can approve member join requests to the group - name: aiSpamProtectionEnabled | type: boolean | description: Whether AI spam protection is enabled for post creation in the group. If not explicitly set, the default behavior is 'true' (enabled). - name: membersCount | type: number | description: Total count of current group members. - name: value | type: number | description: - name: ownerId | type: string | description: Group owner. - name: createdDate | type: string | description: Group creation date and time. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time of the latest group update. - name: lastActivityDate | type: string | description: Date and time of the most recent group activity, for example a post or comment. - name: status | type: string | description: Status of group request. enum: PENDING, APPROVED, REJECTED, CANCELED - name: requestDetails | type: RequestDetails | description: Group request details. - name: rejectionReason | type: string | description: Reason the request has been rejected. ```