Asana · Arazzo Workflow

Asana Duplicate a Project and Poll the Job

Version 1.0.0

Kick off a project duplication job and poll the async job until it succeeds.

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

Provider

asana

Workflows

duplicate-project-and-poll
Duplicate a project and wait for the duplication job to finish.
Starts a project duplication job and polls until the job status is succeeded.
2 steps inputs: newName, projectGid, teamGid outputs: jobGid, newProjectGid, status
1
startDuplication
Start the project duplication job.
2
pollJob
Poll the duplication job until it succeeds.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Asana Duplicate a Project and Poll the Job
  summary: Kick off a project duplication job and poll the async job until it succeeds.
  description: >-
    A project-cloning flow with asynchronous completion. The workflow starts a
    project duplication, which returns a job, and then polls that job until its
    status reports success, branching back to poll again while it is still
    in progress. Each request is written inline so the clone-and-wait sequence
    can be read and executed without opening the underlying OpenAPI description.
  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-projects-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: jobsApi
  url: ../openapi/asana-jobs-api-openapi.yml
  type: openapi
- name: projectsApi
  url: ../openapi/asana-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: duplicate-project-and-poll
  summary: Duplicate a project and wait for the duplication job to finish.
  description: >-
    Starts a project duplication job and polls until the job status is
    succeeded.
  inputs:
    type: object
    required:
    - projectGid
    - newName
    - teamGid
    properties:
      projectGid:
        type: string
        description: Gid of the project to duplicate.
      newName:
        type: string
        description: Name for the duplicated project.
      teamGid:
        type: string
        description: Team gid the duplicate should belong to.
  steps:
  - stepId: startDuplication
    description: Start the project duplication job.
    operationId: duplicateProject
    parameters:
    - name: project_gid
      in: path
      value: $inputs.projectGid
    requestBody:
      contentType: application/json
      payload:
        data:
          name: $inputs.newName
          team: $inputs.teamGid
          include:
          - members
          - task_notes
          - task_assignee
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      jobGid: $response.body#/data/gid
  - stepId: pollJob
    description: Poll the duplication job until it succeeds.
    operationId: getJob
    parameters:
    - name: job_gid
      in: path
      value: $steps.startDuplication.outputs.jobGid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/data/status
      newProjectGid: $response.body#/data/new_project/gid
    onSuccess:
    - name: jobDone
      type: end
      criteria:
      - context: $response.body
        condition: $.data.status == "succeeded"
        type: jsonpath
    - name: stillRunning
      type: goto
      stepId: pollJob
      criteria:
      - context: $response.body
        condition: $.data.status != "succeeded"
        type: jsonpath
  outputs:
    jobGid: $steps.startDuplication.outputs.jobGid
    newProjectGid: $steps.pollJob.outputs.newProjectGid
    status: $steps.pollJob.outputs.status

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-duplicate-project-and-poll-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.