rozod
    Preparing search index...

    Variable getGamePassesV1UniversesUniverseIdGamePassesCreatorConst Api Param

    getGamePassesV1UniversesUniverseIdGamePassesCreator: EndpointGeneric<
        { pageSize?: number; pageToken?: string; universeId: number },
        {
            gamePasses: {
                createdTimestamp: string;
                description: string;
                gamePassId: number;
                iconAssetId: number;
                isForSale: boolean;
                name: string;
                priceInformation:
                    | null
                    | {
                        defaultPriceInRobux: null
                        | number;
                        enabledFeatures: (
                            | "Invalid"
                            | "PriceOptimization"
                            | "UserFixedPrice"
                            | "RegionalPricing"
                        )[];
                    };
                updatedTimestamp: string;
            }[];
            nextPageToken: null
            | string;
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/game-passes/v1/universes/:universeId/game-passes/creator List game passes by universe with configuration details universeId The universe ID. pageSize The number of results to return. Defaults to 50 if not provided. pageToken The cursor token for pagination.