For Agents
Read and write structured rows in Google Area 120 Tables, including listing tables and workspaces and batch-importing records.
Get started with Area120 Tables API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"create a row in Google Area 120 Tables"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Area120 Tables API API.
List all tables and workspaces a user has access to with filtering by view
Retrieve a single row by resource name with selectable view detail levels
Batch create up to hundreds of rows in one call against /v1alpha1/{+parent}/rows:batchCreate
Update individual row values with field-mask-based partial updates
GET STARTED
Use for: I need to import a CSV of leads into a Google Area 120 Tables table, List all tables in my Area 120 workspace, Retrieve the row that matches a specific record ID, Update the status column for a row in a project tracker table
Not supported: Does not handle formulas, charts, or general spreadsheet computation, and does not manage file permissions — use for structured row read/write in Google Area 120 Tables only.
The Area120 Tables API provides programmatic access to Google's Area 120 Tables product, a structured spreadsheet-database hybrid for tracking projects, tasks, and team data. It exposes operations to read tables and workspaces, retrieve and update individual rows, and batch create rows for bulk imports. Tables are organised into workspaces shared across team members, and each row is a structured record with typed columns. The API is scoped to working with structured row data, not free-form documents or general spreadsheet computation.
Delete rows from a table by resource name to clean up stale records
Page through large row sets using pageToken and pageSize on the rows endpoint
Patterns agents use Area120 Tables API API for, with concrete tasks.
★ Bulk Import Records into a Tracker
Migrate data from an existing spreadsheet, CSV, or external system into a Google Area 120 Tables table by batch-creating rows in a single API call. The batchCreate endpoint accepts an array of row objects mapped to the table's column schema, returning the created resource names. Suitable for one-time migrations or scheduled syncs of up to a few hundred rows per request.
Read 200 rows from a source CSV, map columns to the target table schema, and POST to /v1alpha1/{parent}/rows:batchCreate to create them all in one call.
Sync External Tickets into a Workspace Table
Keep an Area 120 Tables tracker in sync with an external ticketing or CRM system by polling for new records and appending them as rows. The API supports listing existing rows with paging, creating new rows individually, and patching status fields when source records change. Ideal for lightweight integrations where Tables is the team-facing surface.
Poll an external ticket source, diff against existing rows in the target table, and POST new tickets to /v1alpha1/{parent}/rows.
Programmatic Cleanup of Stale Rows
Maintain hygiene in shared Area 120 Tables trackers by listing rows, applying age or status filters in code, and deleting expired entries. Useful for automated retention policies on team task lists, intake forms, and event logs without manually pruning the table.
List rows from a table, filter rows older than 90 days by a date column, and DELETE each one by resource name.
Agent-Driven Table Updates via Jentic
Let an AI agent read structured records from a Google Area 120 Tables tracker and write back updates as a result of a workflow run. The agent uses Jentic to discover the row update operation, loads its schema, and patches specific row fields without needing direct OAuth setup. Suitable for status updates, enrichment workflows, and assignment changes driven by agent reasoning.
Use Jentic search for 'update a row in Google Tables', load the patch operation schema, and call it with the row name and updated field values.
10 endpoints — the area120 tables api provides programmatic access to google's area 120 tables product, a structured spreadsheet-database hybrid for tracking projects, tasks, and team data.
METHOD
PATH
DESCRIPTION
/v1alpha1/tables
List tables the caller has access to
/v1alpha1/workspaces
List workspaces
/v1alpha1/{+parent}/rows
List rows in a table with paging
/v1alpha1/{+parent}/rows
Create a single row
/v1alpha1/{+parent}/rows:batchCreate
Batch create multiple rows
/v1alpha1/{+name}
Update a row with a field mask
/v1alpha1/{+name}
Delete a row by resource name
/v1alpha1/tables
List tables the caller has access to
/v1alpha1/workspaces
List workspaces
/v1alpha1/{+parent}/rows
List rows in a table with paging
/v1alpha1/{+parent}/rows
Create a single row
/v1alpha1/{+parent}/rows:batchCreate
Batch create multiple rows
Three things that make agents converge on Jentic-routed access.
Credential isolation
Google OAuth 2.0 access and refresh tokens are stored encrypted in the Jentic vault. Agents receive scoped, short-lived access tokens at execute time and never see the refresh token or client secret.
Intent-based discovery
Agents search Jentic with intents like 'create a row in a Google Tables tracker' and Jentic returns the matching Area120 Tables operation along with its input schema, so the agent can execute without browsing Google's discovery docs.
Time to first call
Direct integration with Area120 Tables: 1-2 days for OAuth consent screen, token storage, and row schema mapping. Through Jentic: under 30 minutes once the OAuth credential is added to the vault.
Alternatives and complements available in the Jentic catalogue.
Google Sheets API
Full Google Sheets spreadsheet API with formulas, charts, and ranges
Choose Sheets when you need formulas, charts, or general spreadsheet semantics rather than the structured row-database model of Tables.
Google Drive API
Manages the files, permissions, and sharing surface around Google docs and tables
Use Drive alongside Tables when you need to share, list, or manage permissions on the underlying files.
Specific to using Area120 Tables API API through Jentic.
What authentication does the Area120 Tables API use?
The API uses Google OAuth 2.0 with the Oauth2 and Oauth2c security schemes declared in the spec. Callers must obtain an access token with a Tables scope and send it in the Authorization header. Through Jentic, OAuth tokens are stored in the encrypted vault so an agent never touches the raw refresh token.
Can I batch insert rows with the Area120 Tables API?
Yes. POST to /v1alpha1/{parent}/rows:batchCreate with an array of row objects to create multiple rows in one call. This is the recommended path for migrations and scheduled syncs rather than calling the single-row create endpoint in a loop.
What are the rate limits for the Area120 Tables API?
The spec does not declare numeric rate limits. As with other googleapis.com endpoints, requests are subject to per-project quotas configured in the Google Cloud console; check the project's quota dashboard before running large batch jobs.
How do I update a single row with the Area120 Tables API through Jentic?
Search Jentic for 'update a row in Google Tables', load the schema for the PATCH /v1alpha1/{+name} operation, and execute it with the row resource name and the field mask describing which columns to change. The token is supplied from the Jentic vault at execute time.
Is the Area120 Tables API generally available?
The API is exposed under v1alpha1, indicating an alpha release. Field shapes and operations may change without strict backward-compatibility guarantees, so production integrations should pin to the alpha version and watch for upgrade notices.
Can I delete rows from a table programmatically?
Yes. Send DELETE to /v1alpha1/{+name} where the name is the row's full resource path. Deletes are immediate and remove the row from the table's view.
/v1alpha1/{+name}
Update a row with a field mask
/v1alpha1/{+name}
Delete a row by resource name