rozod
    Preparing search index...

    Variable getGroupsGroupidJoinRequestsConst Api Param

    getGroupsGroupidJoinRequests: EndpointGeneric<
        {
            cursor?: string;
            groupId: number;
            limit?: 10
            | 25
            | 50
            | 100;
            sortOrder?: "Asc" | "Desc";
        },
        {
            data: {
                created: string;
                requester: {
                    buildersClubMembershipType: 0
                    | 1
                    | 2
                    | 3
                    | 4;
                    displayName: string;
                    hasVerifiedBadge: boolean;
                    userId: number;
                    username: string;
                };
            }[];
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://groups.roblox.com/v1/groups/:groupId/join-requests Gets a page of Group Join Requests for a group. groupId The group id. limit The number of results per request. cursor The paging cursor for the previous or next page. sortOrder The order the results are sorted in.