File movement between Google Shared Drive (team drive) folders using Apps Script

Okay looks like I found an answer, via REST API I can update file’s parents. I’ve made that call and it’s working. Here’s the sample. var apiUrl = “https://www.googleapis.com/drive/v3/files/fileId?addParents=newFolderId&removeParents=oldFolderId&supportsTeamDrives=true”; var token = ScriptApp.getOAuthToken(); var header = {“Authorization”:”Bearer ” + token}; var options = { “method”:”PATCH”, “headers”: header }; var res = UrlFetchApp.fetch(apiUrl, options); UPDATE Using … Read more