rozod
    Preparing search index...

    Variable getUsersUseridOutfitsConst Api Param

    getUsersUseridOutfits: EndpointGeneric<
        {
            isEditable?: boolean;
            itemsPerPage?: number;
            outfitType?: string;
            page?: number;
            userId: number;
        },
        {
            data: {
                id: number;
                isEditable: boolean;
                name: string;
                outfitType: string;
            }[];
            filteredCount: number;
            total: number;
        },
        undefined,
    > = ...

    GET https://avatar.roblox.com/v1/users/:userId/outfits Deprecated, user v2. Gets a list of outfits for the specified user. userId The user id. outfitType The outfit type being searched for, null will return all outfitTypes page The page number of the current page of requests, default is 1. itemsPerPage The max number of outfits that can be returned. isEditable Whether the outfits are editable. A null value will lead to no filtering.