Coda Project · Arazzo Workflow

Create a Coda doc and populate a table

Version 1.0.0

Create a doc, add a page, then upsert rows and wait for the async mutation to complete.

1 workflow 5 source APIs 1 provider
View Spec View on GitHub CompanyProductivityDocumentsSpreadsheetsCollaborationNo-CodeWorkspaceArtificial IntelligenceContent ManagementSoftware-as-a-ServiceArazzoWorkflows

Provider

coda-project

Workflows

create-doc-and-populate
Provision a new doc and write structured rows into its first table.
5 steps inputs: pageName, title outputs: docId
1
createDoc
2
createPage
3
listTables
4
upsertRows
5
getMutationStatus

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Create a Coda doc and populate a table
  version: 1.0.0
  summary: Create a doc, add a page, then upsert rows and wait for the async mutation to complete.
sourceDescriptions:
- name: docsApi
  url: ../openapi/coda-project-docs-api-openapi.yml
  type: openapi
- name: miscellaneousApi
  url: ../openapi/coda-project-miscellaneous-api-openapi.yml
  type: openapi
- name: pagesApi
  url: ../openapi/coda-project-pages-api-openapi.yml
  type: openapi
- name: rowsApi
  url: ../openapi/coda-project-rows-api-openapi.yml
  type: openapi
- name: tablesApi
  url: ../openapi/coda-project-tables-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-doc-and-populate
  summary: Provision a new doc and write structured rows into its first table.
  inputs:
    type: object
    properties:
      title:
        type: string
      pageName:
        type: string
  steps:
  - stepId: createDoc
    operationId: createDoc
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      docId: $response.body#/id
  - stepId: createPage
    operationId: createPage
    parameters:
    - name: docId
      in: path
      value: $steps.createDoc.outputs.docId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.pageName
    successCriteria:
    - condition: $statusCode == 202
  - stepId: listTables
    operationId: listTables
    parameters:
    - name: docId
      in: path
      value: $steps.createDoc.outputs.docId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tableId: $response.body#/items/0/id
  - stepId: upsertRows
    operationId: upsertRows
    parameters:
    - name: docId
      in: path
      value: $steps.createDoc.outputs.docId
    - name: tableIdOrName
      in: path
      value: $steps.listTables.outputs.tableId
    requestBody:
      contentType: application/json
      payload:
        rows:
        - cells:
          - column: c-example
            value: example
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      requestId: $response.body#/requestId
  - stepId: getMutationStatus
    operationId: getMutationStatus
    parameters:
    - name: requestId
      in: path
      value: $steps.upsertRows.outputs.requestId
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    docId: $steps.createDoc.outputs.docId

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/coda-project-create-doc-and-populate"
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 email required.

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