Variable getUsersUseridUsernameHistoryConst

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

GET https://users.roblox.com/v1/users/:userId/username-history

Retrieves the username history for a particular user.

The number of results per request.

The paging cursor for the previous or next page.

The order the results are sorted in.