Google Sheets · Arazzo Workflow

Google Sheets Tag and Find a Spreadsheet With Developer Metadata

Version 1.0.0

Create a spreadsheet, attach a developer metadata tag via batchUpdate, then search for it by key.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Google WorkspaceProductivitySpreadsheetsArazzoWorkflows

Provider

google-sheets

Workflows

tag-and-find-developer-metadata
Create a spreadsheet, tag it with developer metadata, and search for the tag.
Creates a spreadsheet, attaches a spreadsheet-scoped developer metadata key/value pair, and searches for it by key using a developerMetadataLookup data filter.
3 steps inputs: accessToken, metadataKey, metadataValue, title outputs: matchedDeveloperMetadata, spreadsheetId, spreadsheetUrl
1
createSpreadsheet
Create the spreadsheet and capture its generated spreadsheet ID.
2
tagSpreadsheet
Attach a spreadsheet-scoped developer metadata key/value pair using a createDeveloperMetadata batchUpdate request.
3
findByKey
Search the spreadsheet for developer metadata matching the supplied key using a developerMetadataLookup data filter.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Google Sheets Tag and Find a Spreadsheet With Developer Metadata
  summary: Create a spreadsheet, attach a developer metadata tag via batchUpdate, then search for it by key.
  description: >-
    A flow that demonstrates spreadsheet-scoped developer metadata. The
    workflow creates a new spreadsheet, attaches a developer metadata key/value
    pair to the whole spreadsheet via a createDeveloperMetadata batchUpdate
    request, and then searches for that metadata by key to confirm it was
    stored. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: developermetadataApi
  url: ../openapi/google-sheets-developermetadata-api-openapi.yml
  type: openapi
- name: spreadsheetsApi
  url: ../openapi/google-sheets-spreadsheets-api-openapi.yml
  type: openapi
workflows:
- workflowId: tag-and-find-developer-metadata
  summary: Create a spreadsheet, tag it with developer metadata, and search for the tag.
  description: >-
    Creates a spreadsheet, attaches a spreadsheet-scoped developer metadata
    key/value pair, and searches for it by key using a developerMetadataLookup
    data filter.
  inputs:
    type: object
    required:
    - accessToken
    - title
    - metadataKey
    - metadataValue
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token with the spreadsheets scope.
      title:
        type: string
        description: The title to give the newly created spreadsheet.
      metadataKey:
        type: string
        description: The developer metadata key to attach and later search for.
      metadataValue:
        type: string
        description: The developer metadata value to associate with the key.
  steps:
  - stepId: createSpreadsheet
    description: Create the spreadsheet and capture its generated spreadsheet ID.
    operationId: createSpreadsheet
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    requestBody:
      contentType: application/json
      payload:
        properties:
          title: $inputs.title
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      spreadsheetId: $response.body#/spreadsheetId
      spreadsheetUrl: $response.body#/spreadsheetUrl
  - stepId: tagSpreadsheet
    description: >-
      Attach a spreadsheet-scoped developer metadata key/value pair using a
      createDeveloperMetadata batchUpdate request.
    operationId: batchUpdateSpreadsheet
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: spreadsheetId
      in: path
      value: $steps.createSpreadsheet.outputs.spreadsheetId
    requestBody:
      contentType: application/json
      payload:
        requests:
        - createDeveloperMetadata:
            developerMetadata:
              metadataKey: $inputs.metadataKey
              metadataValue: $inputs.metadataValue
              location:
                spreadsheet: true
              visibility: DOCUMENT
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      spreadsheetId: $response.body#/spreadsheetId
      replies: $response.body#/replies
  - stepId: findByKey
    description: >-
      Search the spreadsheet for developer metadata matching the supplied key
      using a developerMetadataLookup data filter.
    operationId: searchDeveloperMetadata
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: spreadsheetId
      in: path
      value: $steps.createSpreadsheet.outputs.spreadsheetId
    requestBody:
      contentType: application/json
      payload:
        dataFilters:
        - developerMetadataLookup:
            metadataKey: $inputs.metadataKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedDeveloperMetadata: $response.body#/matchedDeveloperMetadata
  outputs:
    spreadsheetId: $steps.createSpreadsheet.outputs.spreadsheetId
    spreadsheetUrl: $steps.createSpreadsheet.outputs.spreadsheetUrl
    matchedDeveloperMetadata: $steps.findByKey.outputs.matchedDeveloperMetadata

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/google-sheets-tag-and-find-developer-metadata-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.