Google AppSheet Apps API

The Apps API from Google AppSheet — 1 operation(s) for apps.

Operations 1

POST /apps/{appId}/tables/{tableName}/Action Google AppSheet Invoke Table Action #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-appsheet-apps-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-appsheet-apps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google AppSheet Apps API
  description: The Google AppSheet API enables programmatic access to AppSheet applications, allowing developers to add, update, delete, and find records in AppSheet tables, as well as invoke predefined AppSheet actions via a REST interface.
  version: 2.0.0
  contact:
    name: Google
    url: https://support.google.com/appsheet/answer/10105398
servers:
- url: https://api.appsheet.com/api/v2
security:
- ApplicationAccessKey: []
tags:
- name: Apps
paths:
  /apps/{appId}/tables/{tableName}/Action:
    post:
      operationId: invokeAction
      summary: Google AppSheet Invoke Table Action
      description: Performs an action on a table in an AppSheet app. Supports Add, Delete, Edit, Find, and custom Action operations.
      parameters:
      - name: appId
        in: path
        required: true
        description: The unique identifier of the AppSheet application.
        schema:
          type: string
      - name: tableName
        in: path
        required: true
        description: The name of the table to perform the action on.
        schema:
          type: string
      - name: applicationAccessKey
        in: query
        description: The application access key for authentication.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ActionRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '404':
          description: Not found
      tags:
      - Apps
components:
  schemas:
    ActionResponse:
      type: object
      properties:
        Rows:
          type: array
          description: The rows returned from the action.
          items:
            type: object
            additionalProperties: true
    ActionRequest:
      type: object
      required:
      - Action
      - Properties
      properties:
        Action:
          type: string
          description: The action to perform. One of Add, Delete, Edit, Find, or a custom action name.
          enum:
          - Add
          - Delete
          - Edit
          - Find
        Properties:
          type: object
          description: Properties for the action including locale and timezone.
          properties:
            Locale:
              type: string
            Timezone:
              type: string
        Rows:
          type: array
          description: The rows to add, edit, delete, or the filter criteria for Find operations.
          items:
            type: object
            additionalProperties: true
  securitySchemes:
    ApplicationAccessKey:
      type: apiKey
      in: header
      name: ApplicationAccessKey