Navigation
Mobile DocsNavigation
Mobile DocsRead, write, and query your built-in data tables.
Interact with your built-in data tables directly from workflows. List available tables, query rows with search/filters, insert new rows, update existing rows, or delete rows. Supports Smart Insert (auto-detect format and columns), Auto Save (find-or-create table by name), Lookup/Exists (check if a value exists before acting), Upsert (insert or update by match column), and Bulk Update (update all rows matching a filter). Manage tables in the Tables section of your workspace.
Layout: half
Options: Smart Insert, Auto Save, Query Rows, List Tables
Placeholder: Enter table ID...
Layout: half
Condition: operation = ["query_rows","insert_row","update_row","delete_row","smart_insert","lookup","exists","upsert","bulk_update"]
Placeholder: Table name (created if not exists)...
Layout: half
Condition: operation = "auto_save"
Placeholder: Any format: JSON object/array, CSV, markdown table, key:value text...
Layout: full
Condition: operation = ["smart_insert","auto_save"]
Placeholder: Column name to prevent duplicates...
Layout: half
Condition: operation = ["smart_insert","auto_save"]
Layout: half
Condition: operation = ["smart_insert","auto_save"]
Placeholder: Column name (e.g. email)...
Layout: half
Condition: operation = ["lookup","exists"]
Placeholder: Value to find...
Layout: half
Condition: operation = ["lookup","exists"]
Placeholder: Column to match on (e.g. email)...
Layout: half
Condition: operation = "upsert"
Placeholder: Value to match...
Layout: half
Condition: operation = "upsert"
Placeholder: Column to filter by (e.g. status)...
Layout: half
Condition: operation = "bulk_update"
Placeholder: Value to match (e.g. pending)...
Layout: half
Condition: operation = "bulk_update"
Placeholder: Search term to filter rows...
Layout: full
Condition: operation = "query_rows"
Placeholder: { "status": "active" }
Layout: full
Condition: operation = "query_rows"
Placeholder: 50
Layout: half
Condition: operation = "query_rows"
Placeholder: 1
Layout: half
Condition: operation = "query_rows"
Placeholder: { "Name": "Example", "Status": "active" }
Layout: full
Condition: operation = ["insert_row","update_row","upsert","bulk_update"]
Placeholder: Row ID to update or delete...
Layout: full
Condition: operation = ["update_row","delete_row"]
Required
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Optional
Primary response type:
{
"tables": "json",
"rows": "json",
"row": "json",
"data": "json",
"success": "boolean",
"totalRows": "number",
"page": "number",
"insertedRows": "number",
"skippedRows": "number",
"createdColumns": "json",
"format": "string",
"tableId": "string",
"tableName": "string",
"isNewTable": "boolean",
"found": "boolean",
"exists": "boolean",
"action": "string",
"updatedRows": "number",
"upsertedRows": "number"
}