Copy Worksheet ( gsheets)
One script reply has been approved by the moderators Verified

Created by rossmccrann 245 days ago Viewed 95 times 1 Point

No comments yet

Login to be able to comment
Points: 0
deno
One script reply has been approved by the moderators
Ap­pro­ved
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";

export async function main(gsheets_auth: wmill.Resource<"gsheets">,
    sheet_id: string,
    spreadsheet_id_1: string,
    spreadsheet_id_2: string,
) {

    const token = gsheets_auth["token"];

    const COPY_TO_URL =
        `https://sheets.googleapis.com/v4/spreadsheets/${spreadsheet_id_1}/sheets/${sheet_id}:copyTo`;

    const req = {
        "destinationSpreadsheetId": spreadsheet_id_2,
    };

    const response = await fetch(COPY_TO_URL, {
        method: "POST",
        body: JSON.stringify(req),
        headers: {
            Authorization: "Bearer " + token,
            "Content-Type": "application/json",
        },
    });

    return await response.text();
}

Submitted by rossmccrann 245 days ago

Edited 29 days ago

No comments yet

Login to be able to comment