I'm looking at:
https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/create
and there does not appear to be a 'parents=[]' parameter in the request input parameter to create a google sheet.
sheets.spreadsheets.create(request, function(err, response) {
if (err) {
console.error(err);
return;
}
is it possible to specify the parent id of the folder I would like to create my google sheets in?