Asana · Arazzo Workflow

Asana Review and Reply on a Task Comment Thread

Version 1.0.0

Read the existing comments on a task, then post a reply comment to the thread.

1 workflow 1 source API 1 provider
View Spec View on GitHub CollaborationProductivityProject ManagementProjectTask ManagementTaskWorkflowsArazzoWorkflows

Provider

asana

Workflows

review-and-reply-comment-thread
Read a task's comments and post a reply.
Reads the stories on a task, then posts a reply comment.
2 steps inputs: replyText, taskGid outputs: storyGid, taskGid
1
readStories
Read the existing stories (comments) on the task.
2
postReply
Post a reply comment to the task thread.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Asana Review and Reply on a Task Comment Thread
  summary: Read the existing comments on a task, then post a reply comment to the thread.
  description: >-
    A discussion flow. The workflow reads the existing stories (comments and
    system events) on a task to capture the latest comment and then posts a new
    reply comment to the same task. Each request is written inline so the
    review-and-reply can be read and executed without opening the underlying
    OpenAPI description. Both endpoints live in the full Asana description, so
    every step is addressed through that single source.
  version: 1.0.0
sourceDescriptions:
- name: storiesApi
  url: ../openapi/asana-stories-api-openapi.yml
  type: openapi
workflows:
- workflowId: review-and-reply-comment-thread
  summary: Read a task's comments and post a reply.
  description: >-
    Reads the stories on a task, then posts a reply comment.
  inputs:
    type: object
    required:
    - taskGid
    - replyText
    properties:
      taskGid:
        type: string
        description: Task gid whose comment thread to read and reply to.
      replyText:
        type: string
        description: Text of the reply comment to post.
  steps:
  - stepId: readStories
    description: Read the existing stories (comments) on the task.
    operationId: $sourceDescriptions.storiesApi.getStoriesForTask
    parameters:
    - name: task_gid
      in: path
      value: $inputs.taskGid
    - name: opt_fields
      in: query
      value: text,created_at,created_by.name,resource_subtype
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      latestStoryText: $response.body#/data/0/text
  - stepId: postReply
    description: Post a reply comment to the task thread.
    operationId: $sourceDescriptions.storiesApi.createStoryForTask
    parameters:
    - name: task_gid
      in: path
      value: $inputs.taskGid
    requestBody:
      contentType: application/json
      payload:
        data:
          text: $inputs.replyText
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      storyGid: $response.body#/data/gid
  outputs:
    taskGid: $inputs.taskGid
    storyGid: $steps.postReply.outputs.storyGid

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/asana-review-and-reply-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.