Edits history of script submission #50 for ' Copy Worksheet (gsheets)'

  • deno
    type Gsheets = {
      token: string;
    };
    export async function main(
      gsheets_auth: 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 hugo697 398 days ago

  • deno
    type Gsheets = {
      token: string;
    };
    export async function main(
      gsheets_auth: 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 admin 1031 days ago

  • deno
    
    type Gsheets = {
      token: string;
    };
    export async function main(gsheets_auth: 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 admin 1034 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/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 adam186 1162 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/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 adam186 1197 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/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 1414 days ago