In the following example (from https://developers.google.com/google-apps/spreadsheets/#retrieving_a_list_of_spreadsheets) the columns have names (hours, ipm, items, name). Is it possible to do this without naming the columns (so that the values will just be placed in the first four columns)? If not, do the columns have any standard names I can use so that I don't have to name them myself? (I've tried using the names A, B, C, D and C1, C2, C3, C4, but they didn't work)
<entry xmlns="http://www.w3.org/2005/Atom"
xmlns:gsx="http://schemas.google.com/spreadsheets/2006/extended">
<gsx:hours>1</gsx:hours>
<gsx:ipm>1</gsx:ipm>
<gsx:items>60</gsx:items>
<gsx:name>Elizabeth Bennet</gsx:name>
</entry>
Also, is there any way of seeing the worksheet Id (e.g. 'od6') of a worksheet? I can find the gid, and I found a formula which supposedly converts the gid to the worksheet Id, but I want to confirm that it's working.