rozod
    Preparing search index...

    Variable postLocalizationTableTablesTableidEntriesTranslationHistoryConst Api Param

    postLocalizationTableTablesTableidEntriesTranslationHistory: EndpointGeneric<
        { gameId?: number; tableId: string },
        {
            entries: {
                history: {
                    created: string;
                    translationText: string;
                    translator: { agentType: "User" | "Automation"; id: number };
                }[];
                identifier: {
                    context: string;
                    entryFormat: "Invalid"
                    | "Legacy"
                    | "Icu";
                    key: string;
                    source: string;
                };
                nextCursor: string;
            }[];
            failedEntries: {
                count: number;
                error: { errorCode: number; errorMessage: string };
                identifier: {
                    context: string;
                    entryFormat: "Invalid" | "Legacy" | "Icu";
                    key: string;
                    source: string;
                };
            }[];
            locale: string;
            tableId: string;
        },
        {
            entries: {
                count: number;
                cursor: string;
                identifier: {
                    context: string;
                    entryFormat: "Invalid"
                    | "Legacy"
                    | "Icu";
                    key: string;
                    source: string;
                };
                sortOrder: "Asc"
                | "Desc";
            }[];
            locale: string;
        },
    > = ...

    POST https://localizationtables.roblox.com/v1/localization-table/tables/:tableId/entries/translation-history Gets the translation history for each entry passed in. body A request body containing all relevant data for entry history lookup. tableId The entries' tableId. gameId The game id.