I am trying to add many rows to a googleSheet.
For that reason I’m using the Method: spreadsheets.values.append and it works nice.
The configuration I have is as follows:
Now I need to slightly change that to allow the loading not being in the initial Sheet (gid=0) but on the Sheet on my selection.
So I changed what was working
spreadsheets/{worksheet}/values/A1:append
for this:
spreadsheets/{worksheetId}/values/{sheetId}!A1:append
And it dind’t work.
I tried mani diffente combinations ({sheetId}!A1, {sheetId}A1, include range in the body or inthe query strings) but nothing worked.
Does anyone how to code that range specification