Skip to main content

rows

Overview

Namerows
TypeResource
Idgoogledevelopers.area120tables.rows

Fields

NameDatatypeDescription
namestringThe resource name of the row. Row names have the form tables/{table}/rows/{row}. The name is ignored when creating a row.
updateTimestringTime when the row was last updated.
valuesobjectThe values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request.
createTimestringTime when the row was created.

Methods

NameAccessible byRequired ParamsDescription
tables_rows_getSELECTrowsId, tablesIdGets a row. Returns NOT_FOUND if the row does not exist in the table.
tables_rows_listSELECTtablesIdLists rows in a table. Returns NOT_FOUND if the table does not exist.
tables_rows_createINSERTtablesIdCreates a row.
tables_rows_deleteDELETErowsId, tablesIdDeletes a row.
tables_rows_batchCreateEXECtablesIdCreates multiple rows.
tables_rows_batchDeleteEXECtablesIdDeletes multiple rows.
tables_rows_batchUpdateEXECtablesIdUpdates multiple rows.
tables_rows_patchEXECrowsId, tablesIdUpdates a row.