rozod
    Preparing search index...

    Variable getUsersUseridUsernameHistoryConst Api Param

    getUsersUseridUsernameHistory: EndpointGeneric<
        {
            cursor?: string;
            limit?: 10
            | 25
            | 50
            | 100;
            sortOrder?: "Asc" | "Desc";
            userId: number;
        },
        {
            data: { name: string }[];
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://users.roblox.com/v1/users/:userId/username-history Retrieves the username history for a particular user. userId 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.