type Gsheets = {
token: string;
};
export async function main(
gsheets_auth: Gsheets,
spreadsheetId: string,
sheetId: number,
) {
const token = gsheets_auth["token"];
const DELETE_WORKSHEET_URL = `https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
requests: [
{
deleteSheet: {
sheetId: sheetId,
},
},
],
};
const response = await fetch(DELETE_WORKSHEET_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by admin 468 days ago
type Gsheets = {
token: string;
};
export async function main(gsheets_auth: Gsheets,
spreadsheetId: string,
sheetId: number,
) {
const token = gsheets_auth["token"];
const DELETE_WORKSHEET_URL =
`https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
"requests": [
{
"deleteSheet": {
"sheetId": sheetId
}
}
]
};
const response = await fetch(DELETE_WORKSHEET_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by admin 471 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
export async function main(gsheets_auth: wmill.Resource<"gsheets">,
spreadsheetId: string,
sheetId: number,
) {
const token = gsheets_auth["token"];
const DELETE_WORKSHEET_URL =
`https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
"requests": [
{
"deleteSheet": {
"sheetId": sheetId
}
}
]
};
const response = await fetch(DELETE_WORKSHEET_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by adam186 600 days ago
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
export async function main(gsheets_auth: wmill.Resource<"gsheets">,
spreadsheetId: string,
sheetId: number,
) {
const token = gsheets_auth["token"];
const DELETE_WORKSHEET_URL =
`https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
"requests": [
{
"deleteSheet": {
"sheetId": sheetId
}
}
]
};
const response = await fetch(DELETE_WORKSHEET_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by adam186 634 days ago
import * as wmill from "https://deno.land/x/windmill@v1.24.1/mod.ts";
export async function main(gsheets_auth: wmill.Resource<"gsheets">,
spreadsheetId: string,
sheetId: number,
) {
const token = gsheets_auth["token"];
const DELETE_WORKSHEET_URL =
`https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
"requests": [
{
"deleteSheet": {
"sheetId": sheetId
}
}
]
};
const response = await fetch(DELETE_WORKSHEET_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return await response.text();
}
Submitted by rossmccrann 850 days ago