rozod
    Preparing search index...

    Variable getGroupsGroupidRelationshipsGrouprelationshiptypeConst Api Param

    getGroupsGroupidRelationshipsGrouprelationshiptype: EndpointGeneric<
        {
            cursor?: string;
            groupId: number;
            groupRelationshipType: string;
            limit?: 10
            | 25
            | 50
            | 100;
            sortOrder?: "Asc" | "Desc";
        },
        {
            groupId: number;
            groupResponses: {
                data: {
                    description: string;
                    hasSocialModules: boolean;
                    hasVerifiedBadge: boolean;
                    id: number;
                    isBuildersClubOnly: boolean;
                    isLocked: boolean;
                    memberCount: number;
                    name: string;
                    owner: {
                        buildersClubMembershipType: 0
                        | 1
                        | 2
                        | 3
                        | 4;
                        displayName: string;
                        hasVerifiedBadge: boolean;
                        userId: number;
                        username: string;
                    };
                    publicEntryAllowed: boolean;
                    shout: {
                        body: string;
                        created: string;
                        poster: {
                            buildersClubMembershipType: 0
                            | 1
                            | 2
                            | 3
                            | 4;
                            displayName: string;
                            hasVerifiedBadge: boolean;
                            userId: number;
                            username: string;
                        };
                        updated: string;
                    };
                }[];
                nextPageCursor: string;
                previousPageCursor: string;
            };
            relationshipType: "Allies"
            | "Enemies";
        },
        undefined,
    > = ...

    GET https://groups.roblox.com/v2/groups/:groupId/relationships/:groupRelationshipType Gets a group's relationships with cursor-based pagination. groupId The group Id. groupRelationshipType The group relationship type, enemies or allies. 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.