Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Productivity / Google / Area120 Tables API
Area120 Tables API logo

Google Area120 Tables API

Browse all Google APIs
✓ Official Vendor SpecProductivityCollaborationoauth210 EndpointsREST

For Agents

Read and write structured rows in Google Area 120 Tables, including listing tables and workspaces and batch-importing records.

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Area120 Tables API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Area120 Tables API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Area120 Tables 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

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

Use Cases

Patterns agents use Area120 Tables 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.

Key Endpoints

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

GET

/v1alpha1/tables

List tables the caller has access to

GET

/v1alpha1/workspaces

List workspaces

GET

/v1alpha1/{+parent}/rows

List rows in a table with paging

POST

/v1alpha1/{+parent}/rows

Create a single row

POST

/v1alpha1/{+parent}/rows:batchCreate

Batch create multiple rows

PATCH

/v1alpha1/{+name}

Update a row with a field mask

DELETE

/v1alpha1/{+name}

Delete a row by resource name

GET

/v1alpha1/tables

List tables the caller has access to

GET

/v1alpha1/workspaces

List workspaces

GET

/v1alpha1/{+parent}/rows

List rows in a table with paging

POST

/v1alpha1/{+parent}/rows

Create a single row

POST

/v1alpha1/{+parent}/rows:batchCreate

Batch create multiple rows

PATCH

/v1alpha1/{+name}

Update a row with a field mask

DELETE

/v1alpha1/{+name}

Delete a row by resource name

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

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.

Complementary

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.

FAQs

Specific to using Area120 Tables 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.

GET STARTED

Start building with Area120 Tables API

Explore with Jentic
View OpenAPI Document