Autodesk · Capability

Autodesk ACC Account Admin API — Companies

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

Run with Naftiko AutodeskCompanies

What You Can Do

GET
Getcompanies — Autodesk List Companies
/v1/construction/admin/v1/accounts/{accountid}/companies
POST
Createcompany — Autodesk Create Company
/v1/construction/admin/v1/accounts/{accountid}/companies

MCP Tools

autodesk-list-companies

Autodesk List Companies

read-only idempotent
autodesk-create-company

Autodesk Create Company

Capability Spec

acc-account-admin-companies.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk ACC Account Admin API — Companies
  description: 'Autodesk ACC Account Admin API — Companies. 2 operations. Lead operation: Autodesk List Companies. Self-contained
    Naftiko capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - Companies
  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-companies
    baseUri: https://developer.api.autodesk.com
    description: Autodesk ACC Account Admin API — Companies business capability. Self-contained, no shared references.
    resources:
    - name: construction-admin-v1-accounts-accountId-companies
      path: /construction/admin/v1/accounts/{accountId}/companies
      operations:
      - name: getcompanies
        method: GET
        description: Autodesk List Companies
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: filter[name]
          in: query
          type: string
        - name: filter[trade]
          in: query
          type: string
        - name: limit
          in: query
          type: integer
        - name: offset
          in: query
          type: integer
      - name: createcompany
        method: POST
        description: Autodesk Create Company
        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
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: acc-account-admin-companies-rest
    port: 8080
    description: REST adapter for Autodesk ACC Account Admin API — Companies. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/construction/admin/v1/accounts/{accountid}/companies
      name: construction-admin-v1-accounts-accountid-companies
      description: REST surface for construction-admin-v1-accounts-accountId-companies.
      operations:
      - method: GET
        name: getcompanies
        description: Autodesk List Companies
        call: acc-account-admin-companies.getcompanies
        with:
          accountId: rest.accountId
          filter[name]: rest.filter[name]
          filter[trade]: rest.filter[trade]
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcompany
        description: Autodesk Create Company
        call: acc-account-admin-companies.createcompany
        with:
          accountId: rest.accountId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: acc-account-admin-companies-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk ACC Account Admin API — Companies. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: autodesk-list-companies
      description: Autodesk List Companies
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: acc-account-admin-companies.getcompanies
      with:
        accountId: tools.accountId
        filter[name]: tools.filter[name]
        filter[trade]: tools.filter[trade]
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-create-company
      description: Autodesk Create Company
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: acc-account-admin-companies.createcompany
      with:
        accountId: tools.accountId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.