rozod
    Preparing search index...

    Variable getGroupsGroupidBlockedKeywordsConst Api Param

    getGroupsGroupidBlockedKeywords: EndpointGeneric<
        {
            cursor?: string;
            groupId: number;
            limit?: 10
            | 25
            | 50
            | 100;
            sortOrder?: "Asc" | "Desc";
        },
        {
            data: {
                createdAt: string;
                createdBy: number;
                id: string;
                isPrivate: boolean;
                keyword: string;
                updatedAt: string;
            }[];
            nextPageCursor: string;
            previousPageCursor: string;
            totalActiveKeywordsCount: number;
        },
        undefined,
    > = ...

    GET https://groups.roblox.com/v1/groups/:groupId/blocked-keywords Retrieves a paginated list of blocked keywords for a specific Group. groupId 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.