rozod
    Preparing search index...

    Variable getAssetsAssetidBundlesConst Api Param

    getAssetsAssetidBundles: EndpointGeneric<
        {
            assetId: number;
            cursor?: string;
            limit?: 10
            | 25
            | 50
            | 100;
            sortOrder?: "Asc" | "Desc";
        },
        {
            data: {
                bundleType: string;
                collectibleItemDetail: {
                    collectibleItemId: string;
                    collectibleItemType: 0
                    | 1
                    | 2;
                    collectibleProductId: string;
                    hasResellers: boolean;
                    lowestAvailableResaleItemInstanceId: string;
                    lowestAvailableResaleProductId: string;
                    lowestPrice: number;
                    lowestResalePrice: number;
                    offSaleDeadline: string;
                    price: number;
                    quantityLimitPerUser: number;
                    resaleRestriction: 0 | 1 | 2;
                    saleLocation: {
                        enabledUniverseIds: number[];
                        saleLocationType: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
                        saleLocationTypeId: number;
                        universeIds: number[];
                    };
                    saleStatus: 0
                    | 1
                    | 2
                    | 3
                    | 4;
                    totalQuantity: number;
                    unitsAvailable: number;
                };
                creator: {
                    hasVerifiedBadge: boolean;
                    id: number;
                    name: string;
                    type: string;
                };
                description: string;
                id: number;
                isRecolorable: boolean;
                itemRestrictions: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)[];
                items: { id: number; name: string; owned: boolean; type: string }[];
                name: string;
                product: {
                    id: number;
                    isForSale: boolean;
                    isFree: boolean;
                    isPublicDomain: boolean;
                    noPriceText: string;
                    premiumPricing: {
                        premiumDiscountPercentage: number;
                        premiumPriceInRobux: number;
                    };
                    priceInRobux: number;
                    type: string;
                };
            }[];
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://catalog.roblox.com/v1/assets/:assetId/bundles Lists the bundles a particular asset belongs to. Use the Id of the last bundle in the response to get the next page. assetId 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.