I am trying to append a row of cells in a spreadsheet using c# and the google sheets api. I got the code
AppendCellsRequest appReq = new AppendCellsRequest();
appReq.SheetId = 1;
The problem is that the only sheetID I got is from the url and is a String. Where do I find the sheet ID as an integer and how do I execute the AppendCellsRequest?
Hopes you can help.