//native
type Gsheets = {
token: string;
};
export async function main(
gsheets_auth: Gsheets,
spreadsheetId: string,
sheetId: number,
start_index: number,
end_index: number,
) {
const token = gsheets_auth["token"];
const DELETE_ROWS_URL = `https://sheets.googleapis.com/v4/spreadsheets/${spreadsheetId}:batchUpdate`;
const body = {
requests: [
{
deleteDimension: {
range: {
sheetId: sheetId,
dimension: "ROWS",
startIndex: start_index,
endIndex: end_index,
},
},
},
],
};
const response = await fetch(DELETE_ROWS_URL, {
method: "POST",
body: JSON.stringify(body),
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
const text = await response.json();
return "Rows deleted.";
}
Submitted by hugo989 4 days ago