Autodesk · Capability

Autodesk ACC Account Admin API — Projects

Autodesk ACC Account Admin API — Projects. 4 operations. Lead operation: Autodesk List Projects. Self-contained Naftiko capability covering one Autodesk business surface.

Run with Naftiko AutodeskProjects

What You Can Do

GET
Getprojects — Autodesk List Projects
/v1/construction/admin/v1/accounts/{accountid}/projects
POST
Createproject — Autodesk Create Project
/v1/construction/admin/v1/accounts/{accountid}/projects
GET
Getproject — Autodesk Get Project
/v1/construction/admin/v1/accounts/{accountid}/projects/{projectid}
PATCH
Updateproject — Autodesk Update Project
/v1/construction/admin/v1/accounts/{accountid}/projects/{projectid}

MCP Tools

autodesk-list-projects

Autodesk List Projects

read-only idempotent
autodesk-create-project

Autodesk Create Project

autodesk-get-project

Autodesk Get Project

read-only idempotent
autodesk-update-project

Autodesk Update Project

idempotent

Capability Spec

acc-account-admin-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk ACC Account Admin API — Projects
  description: 'Autodesk ACC Account Admin API — Projects. 4 operations. Lead operation: Autodesk List Projects. Self-contained
    Naftiko capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTODESK_API_KEY: AUTODESK_API_KEY
capability:
  consumes:
  - type: http
    namespace: acc-account-admin-projects
    baseUri: https://developer.api.autodesk.com
    description: Autodesk ACC Account Admin API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: construction-admin-v1-accounts-accountId-projects
      path: /construction/admin/v1/accounts/{accountId}/projects
      operations:
      - name: getprojects
        method: GET
        description: Autodesk List Projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: filter[status]
          in: query
          type: string
        - name: filter[name]
          in: query
          type: string
        - name: filter[platform]
          in: query
          type: string
        - name: sort
          in: query
          type: string
          description: Sort field and direction (e.g., name asc, startDate desc).
        - name: limit
          in: query
          type: integer
        - name: offset
          in: query
          type: integer
      - name: createproject
        method: POST
        description: Autodesk Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: construction-admin-v1-accounts-accountId-projects-projectId
      path: /construction/admin/v1/accounts/{accountId}/projects/{projectId}
      operations:
      - name: getproject
        method: GET
        description: Autodesk Get Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: projectId
          in: path
          type: string
          required: true
      - name: updateproject
        method: PATCH
        description: Autodesk Update Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: projectId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: acc-account-admin-projects-rest
    port: 8080
    description: REST adapter for Autodesk ACC Account Admin API — Projects. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/construction/admin/v1/accounts/{accountid}/projects
      name: construction-admin-v1-accounts-accountid-projects
      description: REST surface for construction-admin-v1-accounts-accountId-projects.
      operations:
      - method: GET
        name: getprojects
        description: Autodesk List Projects
        call: acc-account-admin-projects.getprojects
        with:
          accountId: rest.accountId
          filter[status]: rest.filter[status]
          filter[name]: rest.filter[name]
          filter[platform]: rest.filter[platform]
          sort: rest.sort
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Autodesk Create Project
        call: acc-account-admin-projects.createproject
        with:
          accountId: rest.accountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/construction/admin/v1/accounts/{accountid}/projects/{projectid}
      name: construction-admin-v1-accounts-accountid-projects-projectid
      description: REST surface for construction-admin-v1-accounts-accountId-projects-projectId.
      operations:
      - method: GET
        name: getproject
        description: Autodesk Get Project
        call: acc-account-admin-projects.getproject
        with:
          accountId: rest.accountId
          projectId: rest.projectId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateproject
        description: Autodesk Update Project
        call: acc-account-admin-projects.updateproject
        with:
          accountId: rest.accountId
          projectId: rest.projectId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: acc-account-admin-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk ACC Account Admin API — Projects. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: autodesk-list-projects
      description: Autodesk List Projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: acc-account-admin-projects.getprojects
      with:
        accountId: tools.accountId
        filter[status]: tools.filter[status]
        filter[name]: tools.filter[name]
        filter[platform]: tools.filter[platform]
        sort: tools.sort
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-create-project
      description: Autodesk Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: acc-account-admin-projects.createproject
      with:
        accountId: tools.accountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-get-project
      description: Autodesk Get Project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: acc-account-admin-projects.getproject
      with:
        accountId: tools.accountId
        projectId: tools.projectId
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-update-project
      description: Autodesk Update Project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: acc-account-admin-projects.updateproject
      with:
        accountId: tools.accountId
        projectId: tools.projectId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.