Hi,
I have a similar issue....
I can add data to an existing sheet no problem using ListEntry..
e.g.
newEntry.getCustomElements().setValueLocal(headerTag,
valueList.get(x));
ListEntry insertedRow = spreadSheetService.insert(listFeedUrl, newEntry);
However, if I create a new worksheet, it is a blank sheet with no header.
An API call using newEntry.getCustomElements().setValueLocal(...) EXPECTS a
value for the header
newEntry.getCustomElements().setValueLocal(*headerTag*,
valueList.get(x));
Can anyone help?
Thanks,
Will