Asana · Capability

Asana Organization Exports API — Organization Exports

Asana Organization Exports API — Organization Exports. 2 operations. Lead operation: Asana Create an organization export request. Self-contained Naftiko capability covering one Asana business surface.

Run with Naftiko AsanaOrganization Exports

What You Can Do

POST
Createorganizationexport — Asana Create an organization export request
/v1/organization-exports
GET
Getorganizationexport — Asana Get details on an org export request
/v1/organization-exports/{organization-export-gid}

MCP Tools

asana-create-organization-export-request

Asana Create an organization export request

asana-get-details-org-export

Asana Get details on an org export request

read-only idempotent

Capability Spec

organization-exports-organization-exports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Asana Organization Exports API — Organization Exports
  description: 'Asana Organization Exports API — Organization Exports. 2 operations. Lead operation: Asana Create an organization
    export request. Self-contained Naftiko capability covering one Asana business surface.'
  tags:
  - Asana
  - Organization Exports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ASANA_API_KEY: ASANA_API_KEY
capability:
  consumes:
  - type: http
    namespace: organization-exports-organization-exports
    baseUri: https://app.asana.com/api/1.0
    description: Asana Organization Exports API — Organization Exports business capability. Self-contained, no shared references.
    resources:
    - name: organization_exports
      path: /organization_exports
      operations:
      - name: createorganizationexport
        method: POST
        description: Asana Create an organization export request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organization_exports-organization_export_gid
      path: /organization_exports/{organization_export_gid}
      operations:
      - name: getorganizationexport
        method: GET
        description: Asana Get details on an org export request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization_export_gid
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.ASANA_API_KEY}}'
  exposes:
  - type: rest
    namespace: organization-exports-organization-exports-rest
    port: 8080
    description: REST adapter for Asana Organization Exports API — Organization Exports. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/organization-exports
      name: organization-exports
      description: REST surface for organization_exports.
      operations:
      - method: POST
        name: createorganizationexport
        description: Asana Create an organization export request
        call: organization-exports-organization-exports.createorganizationexport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization-exports/{organization-export-gid}
      name: organization-exports-organization-export-gid
      description: REST surface for organization_exports-organization_export_gid.
      operations:
      - method: GET
        name: getorganizationexport
        description: Asana Get details on an org export request
        call: organization-exports-organization-exports.getorganizationexport
        with:
          organization_export_gid: rest.organization_export_gid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: organization-exports-organization-exports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Asana Organization Exports API — Organization Exports. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: asana-create-organization-export-request
      description: Asana Create an organization export request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: organization-exports-organization-exports.createorganizationexport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: asana-get-details-org-export
      description: Asana Get details on an org export request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: organization-exports-organization-exports.getorganizationexport
      with:
        organization_export_gid: tools.organization_export_gid
      outputParameters:
      - type: object
        mapping: $.