//native
type Gdrive = {
token: string;
};
export async function main(
gdrive_auth: Gdrive,
driveId: string,
allowItemDeletion: boolean = false,
useDomainAdminAccess: boolean = false,
) {
const DELETE_SHARED_DRIVE_URL = `https://www.googleapis.com/drive/v3/drives/${driveId}/?allowItemDeletion=${allowItemDeletion}&useDomainAdminAccess=${useDomainAdminAccess}`;
const token = gdrive_auth["token"];
const response = await fetch(DELETE_SHARED_DRIVE_URL, {
method: "DELETE",
headers: {
Authorization: "Bearer " + token,
"Content-Type": "application/json",
},
});
return "Deleted shared drive.";
}
Submitted by hugo989 6 days ago