//native
type Gsheets = {
token: string;
};
export async function main(
gsheets_auth: Gsheets,
spreadsheetId: string,
title: string,
) {
const token = gsheets_auth["token"];
const ADD_WORKSHEET_URL = `https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
requests: [
{
addSheet: {
properties: {
title: title,
gridProperties: {
rowCount: 20,
columnCount: 12,
},
tabColor: {
red: 1.0,
green: 0.3,
blue: 0.4,
},
},
},
},
],
};
const response = await fetch(ADD_WORKSHEET_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by hugo989 12 days ago