Asana · Arazzo Workflow

Asana Triage and Tag a Task

Version 1.0.0

Create a task, place it in a section, and label it with a tag in one triage pass.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CollaborationProductivityProject ManagementProjectTask ManagementTaskWorkflowsArazzoWorkflows

Provider

asana

Workflows

triage-and-tag-task
Create a task, add it to a section, and apply a tag.
Creates a task, places it into a board section, then tags it for categorization.
3 steps inputs: sectionGid, tagGid, taskName, taskNotes, workspaceGid outputs: taskGid
1
createTask
Create the task in the workspace.
2
addToSection
Move the new task into the target section.
3
applyTag
Apply the tag to the task for categorization.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Asana Triage and Tag a Task
  summary: Create a task, place it in a section, and label it with a tag in one triage pass.
  description: >-
    A focused intake flow. The workflow creates a task in a workspace, moves it
    into a specific section of the board so it lands in the right column, and
    applies a tag for categorization. Each request is written inline so the
    triage sequence can be read and executed without opening the underlying
    OpenAPI description. The section-move and tag endpoints are part of the full
    Asana description, so every step is addressed through that one source.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-900.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-900.30
      capability_name: Project Management
      spec: asana-tasks-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: sectionsApi
  url: ../openapi/asana-sections-api-openapi.yml
  type: openapi
- name: tasksApi
  url: ../openapi/asana-tasks-api-openapi.yml
  type: openapi
workflows:
- workflowId: triage-and-tag-task
  summary: Create a task, add it to a section, and apply a tag.
  description: >-
    Creates a task, places it into a board section, then tags it for
    categorization.
  inputs:
    type: object
    required:
    - workspaceGid
    - sectionGid
    - tagGid
    - taskName
    properties:
      workspaceGid:
        type: string
        description: Workspace gid the task belongs to.
      sectionGid:
        type: string
        description: Section gid to drop the task into.
      tagGid:
        type: string
        description: Tag gid to apply to the task.
      taskName:
        type: string
        description: Name of the task to create.
      taskNotes:
        type: string
        description: Optional plain-text notes for the task.
  steps:
  - stepId: createTask
    description: Create the task in the workspace.
    operationId: $sourceDescriptions.tasksApi.createTask
    requestBody:
      contentType: application/json
      payload:
        data:
          name: $inputs.taskName
          notes: $inputs.taskNotes
          workspace: $inputs.workspaceGid
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      taskGid: $response.body#/data/gid
  - stepId: addToSection
    description: Move the new task into the target section.
    operationId: $sourceDescriptions.sectionsApi.addTaskForSection
    parameters:
    - name: section_gid
      in: path
      value: $inputs.sectionGid
    requestBody:
      contentType: application/json
      payload:
        data:
          task: $steps.createTask.outputs.taskGid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sectionResult: $response.body#/data
  - stepId: applyTag
    description: Apply the tag to the task for categorization.
    operationId: $sourceDescriptions.tasksApi.addTagForTask
    parameters:
    - name: task_gid
      in: path
      value: $steps.createTask.outputs.taskGid
    requestBody:
      contentType: application/json
      payload:
        data:
          tag: $inputs.tagGid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tagResult: $response.body#/data
  outputs:
    taskGid: $steps.createTask.outputs.taskGid

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-triage-and-tag-task-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.