rozod
    Preparing search index...

    Variable getCreationsGetAssetsConst Api Param

    getCreationsGetAssets: EndpointGeneric<
        {
            assetType: string;
            cursor?: string;
            groupId?: number;
            isArchived?: boolean;
            limit?: 10
            | 25
            | 50
            | 100;
        },
        {
            data: { assetId: number; name: string }[];
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://itemconfiguration.roblox.com/v1/creations/get-assets Gets the user created asset information filtered by the given asset type. assetType isArchived groupId limit The number of results per request. cursor The paging cursor for the previous or next page.