rozod
    Preparing search index...

    Variable postGamePassesV1UniversesUniverseIdGamePassesConst Api Param Description

    postGamePassesV1UniversesUniverseIdGamePasses: EndpointGeneric<
        { universeId: number },
        {
            createdTimestamp: string;
            description: string;
            gamePassId: number;
            iconAssetId: number;
            isForSale: boolean;
            name: string;
            priceInformation:
                | null
                | {
                    defaultPriceInRobux: null
                    | number;
                    enabledFeatures: (
                        | "Invalid"
                        | "PriceOptimization"
                        | "UserFixedPrice"
                        | "RegionalPricing"
                    )[];
                };
            updatedTimestamp: string;
        },
        {
            description?: null
            | string;
            imageFile?: null | File;
            isForSale?: null | boolean;
            isRegionalPricingEnabled?: null | boolean;
            name: string;
            price?: null | number;
        },
    > = ...

    POST https://apis.roblox.com/cloud/game-passes/v1/universes/:universeId/game-passes Create game pass body universeId The universe ID. Creates a new game pass with the provided configuration details.