rozod
    Preparing search index...

    Variable getGroupsGroupidRolesRolesetidUsersConst Api Param

    getGroupsGroupidRolesRolesetidUsers: EndpointGeneric<
        {
            cursor?: string;
            groupId: number;
            limit?: 10
            | 25
            | 50
            | 100;
            roleSetId: number;
            sortOrder?: "Asc" | "Desc";
        },
        {
            data: {
                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/roles/:roleSetId/users Gets a list of users in a group for a specific roleset. groupId The group id. roleSetId The group's role set 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.