rozod
    Preparing search index...

    Variable getAvatarUsersUseridOutfitsConst Api Param

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

    GET https://avatar.roblox.com/v2/avatar/users/:userId/outfits Gets a list of outfits for the specified user. userId The user id. paginationToken The token received from the response to get the next page. For the first request, this value should be empty. Note : If no value is sent the 1st page will be returned. 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.