What is the correct syntax for Google Sheets API v4 method spreadsheets.values.append for Google Apps Script?
Tried the following code but it is giving an error: Invalid JSON payload received.
function appendRow() {
Sheets.Spreadsheets.Values.append("SpreadsheetID", "Sheet1!A:A", "USER_ENTERED", { "values": [[new Date()]] } );
}
Thank you.
How about this sample?
Sheets.Spreadsheets.Values.append()
of Advanced Google services is used likeSheets.Spreadsheets.Values.append(resource, spreadsheetId, range, optionalArgs)
. So the sample used your parameters is as follows.Sample :