I have a Google sheet and I am looking to get the previous version which was on a specific date. Let's say, I want to get the version of my Google sheet dated back to 31st December 2022. This version should be created in a new spreadsheet and does not overwrite the existing one. I found a StackOverflow snippet proposed by @Tanaike that seems similar to my requirement:
function myFunction() { var revisionId = "1"; // Please set the revision ID you want to revert. var googleDocsFileId = "###"; // Please set the Google Docs file ID. var endpoints = Drive.Revisions.get(googleDocsFileId, revisionId).exportLinks; var keys = Object.keys(endpoints); for (var i = 0; i < keys.length; i++) { if (keys[i].indexOf("application/vnd.openxmlformats-officedocument") > -1) { var endpoint = endpoints[keys[i]] + "&access_token=" + ScriptApp.getOAuthToken(); var mediaData = UrlFetchApp.fetch(endpoint).getBlob(); Logger.log(mediaData.getBytes().length) Drive.Files.update({}, googleDocsFileId, mediaData); break; } } }
But this script does not address the specific date version scenario and it overwrites the existing file. I was not able to modify it due to my basic knowledge. Any guidance would be much appreciated.
I believe your goal is as follows.
any version of 31st December 2022 will be fine
, you want to restore one of the versions on 31st December 2022.In this case, how about the following answer? Unfortunately, I think that in order to achieve your goal, it is required to do the following flow.
When this flow is reflected in a sample script, I think that your showing script cannot be directly used. In this case, how about the following sample script?
Sample script:
Before you use this script, please enable Drive API at Advanced Google services. And, please set
date
. In this case, please use the format ofyyyy-MM-dd
as a string value.This sample script is for Drive API v2.
const revision = list.pop();
toconst revision = list[0];
.References:
Updated on December 13, 2023
In the current stage, when Drive API is enabled at Advanced Google services, Drive API v3 is automatically used. In the official document, Drive API v3 has already been used. Ref In the current stage, the users can select V3 and V2.
If you enable Drive API at Advanced Google services, Drive API v3 is automatically set. In this case, the above sample script is modified as follows.
This sample script is for Drive API v3.