Tools
Google AppSheet
Read, add, edit, and delete rows in a Google AppSheet table
Integrate Google AppSheet into your workflow. Find, add, edit, and delete rows in an AppSheet table using the AppSheet API. Requires an AppSheet Enterprise plan with the API enabled and an Application Access Key.
Read rows from an AppSheet table. Omit the selector to return every row, or provide a Selector expression (Filter/Select/OrderBy/Top) to narrow and shape the results.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | AppSheet Application Access Key |
appId | string | Yes | AppSheet app ID (found in App > Settings > Integrations > IN) |
tableName | string | Yes | Name of the table to read from |
region | string | No | AppSheet region subdomain: "www" (global, default), "eu", or "asia-southeast" |
selector | string | No | Optional AppSheet expression to filter/sort/limit rows, e.g. Filter(TableName, [Age] >= 21) or Top(OrderBy(Filter(TableName, true), [LastName], true), 10) |
| Parameter | Type | Description |
|---|
rows | array | Matching rows returned by AppSheet |
metadata | json | Operation metadata |
Add new rows to an AppSheet table. The key column value must be provided explicitly, or omitted when its Initial value expression generates it automatically (e.g. UNIQUEID()).
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | AppSheet Application Access Key |
appId | string | Yes | AppSheet app ID (found in App > Settings > Integrations > IN) |
tableName | string | Yes | Name of the table to add rows to |
region | string | No | AppSheet region subdomain: "www" (global, default), "eu", or "asia-southeast" |
rows | json | Yes | Array of row objects to add, each a column-name/value map, e.g. [{ "FirstName": "Jan", "LastName": "Jones" }] |
| Parameter | Type | Description |
|---|
rows | array | Rows added by AppSheet, including any generated key values |
metadata | json | Operation metadata |
Update existing rows in an AppSheet table. Each row must explicitly include the key column name and value, plus any columns to change.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | AppSheet Application Access Key |
appId | string | Yes | AppSheet app ID (found in App > Settings > Integrations > IN) |
tableName | string | Yes | Name of the table to update rows in |
region | string | No | AppSheet region subdomain: "www" (global, default), "eu", or "asia-southeast" |
rows | json | Yes | Array of row objects to update, each including the key column and the columns to change, e.g. [{ "RowID": "123", "Status": "Done" }] |
| Parameter | Type | Description |
|---|
rows | array | Rows updated by AppSheet |
metadata | json | Operation metadata |
Delete rows from an AppSheet table. Each row only needs to include the key column name and value.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | AppSheet Application Access Key |
appId | string | Yes | AppSheet app ID (found in App > Settings > Integrations > IN) |
tableName | string | Yes | Name of the table to delete rows from |
region | string | No | AppSheet region subdomain: "www" (global, default), "eu", or "asia-southeast" |
rows | json | Yes | Array of row objects identifying rows to delete by key column, e.g. [{ "RowID": "123" }] |
| Parameter | Type | Description |
|---|
rows | array | Rows deleted by AppSheet |
metadata | json | Operation metadata |
- Category:
tools
- Type:
google_appsheet