Autodesk · Capability

Autodesk Design Automation API — WorkItems

Autodesk Design Automation API — WorkItems. 3 operations. Lead operation: Autodesk Create WorkItem. Self-contained Naftiko capability covering one Autodesk business surface.

Run with Naftiko AutodeskWorkItems

What You Can Do

POST
Createworkitem — Autodesk Create WorkItem
/v1/da/us-east/v3/workitems
GET
Getworkitemstatus — Autodesk Get WorkItem Status
/v1/da/us-east/v3/workitems/{id}
DELETE
Deleteworkitem — Autodesk Cancel WorkItem
/v1/da/us-east/v3/workitems/{id}

MCP Tools

autodesk-create-workitem

Autodesk Create WorkItem

autodesk-get-workitem-status

Autodesk Get WorkItem Status

read-only idempotent
autodesk-cancel-workitem

Autodesk Cancel WorkItem

idempotent

Capability Spec

design-automation-workitems.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk Design Automation API — WorkItems
  description: 'Autodesk Design Automation API — WorkItems. 3 operations. Lead operation: Autodesk Create WorkItem. Self-contained
    Naftiko capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - WorkItems
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTODESK_API_KEY: AUTODESK_API_KEY
capability:
  consumes:
  - type: http
    namespace: design-automation-workitems
    baseUri: https://developer.api.autodesk.com
    description: Autodesk Design Automation API — WorkItems business capability. Self-contained, no shared references.
    resources:
    - name: da-us-east-v3-workitems
      path: /da/us-east/v3/workitems
      operations:
      - name: createworkitem
        method: POST
        description: Autodesk Create WorkItem
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: da-us-east-v3-workitems-id
      path: /da/us-east/v3/workitems/{id}
      operations:
      - name: getworkitemstatus
        method: GET
        description: Autodesk Get WorkItem Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: deleteworkitem
        method: DELETE
        description: Autodesk Cancel WorkItem
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: design-automation-workitems-rest
    port: 8080
    description: REST adapter for Autodesk Design Automation API — WorkItems. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/da/us-east/v3/workitems
      name: da-us-east-v3-workitems
      description: REST surface for da-us-east-v3-workitems.
      operations:
      - method: POST
        name: createworkitem
        description: Autodesk Create WorkItem
        call: design-automation-workitems.createworkitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/da/us-east/v3/workitems/{id}
      name: da-us-east-v3-workitems-id
      description: REST surface for da-us-east-v3-workitems-id.
      operations:
      - method: GET
        name: getworkitemstatus
        description: Autodesk Get WorkItem Status
        call: design-automation-workitems.getworkitemstatus
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteworkitem
        description: Autodesk Cancel WorkItem
        call: design-automation-workitems.deleteworkitem
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: design-automation-workitems-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk Design Automation API — WorkItems. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: autodesk-create-workitem
      description: Autodesk Create WorkItem
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: design-automation-workitems.createworkitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-get-workitem-status
      description: Autodesk Get WorkItem Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: design-automation-workitems.getworkitemstatus
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-cancel-workitem
      description: Autodesk Cancel WorkItem
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: design-automation-workitems.deleteworkitem
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.