I have an arrayList of Row objects and am using smartsheet's api to update the rows as shown below:
ArrayList<Row> updatingRows = new ArrayList<Row>();
/*
Logic to add desired rows
*/
PartialRowUpdateResult updatedRows = smartsheet.sheetResources().rowResources().updateRowsAllowPartialSuccess(longRepresentingMySheetID,
updatingRows);
When I use System.out.println(updatedRows.getMessage())
, the console prints out SUCCESS. However, when I examine the sheet itself, there hasn't been an update, and the last edited date/time doesn't change either. I have made sure that I am using the correct sheet ID, so why am I getting a SUCCESS message when no updates are happening on the sheet?