Airtable · Arazzo Workflow

Airtable Manage Comment Thread

Version 1.0.0

List a record's comments, edit one, then delete one.

1 workflow 1 source API 1 provider
View Spec View on GitHub ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows

Provider

airtable

Workflows

manage-comment-thread
List comments on a record, update one, then delete one.
Lists the comments on a record, patches the text of the first comment, and deletes the comment identified for removal.
3 steps inputs: baseId, deleteCommentId, newText, recordId, tableIdOrName outputs: deletedCommentId, editedCommentId
1
listThread
List the comments on the record in reverse chronological order to locate the comment to edit.
2
editComment
Update the text of the first comment in the thread. Only the author of the comment can update it.
3
removeComment
Delete the comment identified for removal from the thread. Only the author of the comment can delete it.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Manage Comment Thread
  summary: List a record's comments, edit one, then delete one.
  description: >-
    Manages the comment thread on an Airtable record end to end. The workflow
    lists the comments on a record, edits the text of the first comment in the
    thread, and then deletes a comment. Only the author of a comment may edit or
    delete it. 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: commentsApi
  url: ../openapi/airtable-comments-api-openapi.yml
  type: openapi
workflows:
- workflowId: manage-comment-thread
  summary: List comments on a record, update one, then delete one.
  description: >-
    Lists the comments on a record, patches the text of the first comment, and
    deletes the comment identified for removal.
  inputs:
    type: object
    required:
    - baseId
    - tableIdOrName
    - recordId
    - newText
    - deleteCommentId
    properties:
      baseId:
        type: string
        description: The Airtable base identifier (e.g. appXXXXXXXXXXXXXX).
      tableIdOrName:
        type: string
        description: The table id or name containing the record.
      recordId:
        type: string
        description: The record id whose comment thread is being managed.
      newText:
        type: string
        description: The replacement text for the comment being edited.
      deleteCommentId:
        type: string
        description: The id of the comment to delete from the thread.
  steps:
  - stepId: listThread
    description: >-
      List the comments on the record in reverse chronological order to locate
      the comment to edit.
    operationId: listComments
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableIdOrName
      in: path
      value: $inputs.tableIdOrName
    - name: recordId
      in: path
      value: $inputs.recordId
    - name: pageSize
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      comments: $response.body#/comments
      firstCommentId: $response.body#/comments/0/id
      offset: $response.body#/offset
  - stepId: editComment
    description: >-
      Update the text of the first comment in the thread. Only the author of
      the comment can update it.
    operationId: updateComment
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableIdOrName
      in: path
      value: $inputs.tableIdOrName
    - name: recordId
      in: path
      value: $inputs.recordId
    - name: commentId
      in: path
      value: $steps.listThread.outputs.firstCommentId
    requestBody:
      contentType: application/json
      payload:
        text: $inputs.newText
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      commentId: $response.body#/id
      text: $response.body#/text
  - stepId: removeComment
    description: >-
      Delete the comment identified for removal from the thread. Only the
      author of the comment can delete it.
    operationId: deleteComment
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: tableIdOrName
      in: path
      value: $inputs.tableIdOrName
    - name: recordId
      in: path
      value: $inputs.recordId
    - name: commentId
      in: path
      value: $inputs.deleteCommentId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deletedId: $response.body#/id
      deleted: $response.body#/deleted
  outputs:
    editedCommentId: $steps.editComment.outputs.commentId
    deletedCommentId: $steps.removeComment.outputs.deletedId

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/airtable-manage-comment-thread-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.