Autodesk · Capability

Autodesk Parameters API — Parameters

Autodesk Parameters API — Parameters. 5 operations. Lead operation: Autodesk List Parameters. Self-contained Naftiko capability covering one Autodesk business surface.

Run with Naftiko AutodeskParameters

What You Can Do

GET
Getparameters — Autodesk List Parameters
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters
POST
Createparameter — Autodesk Create Parameter
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters
GET
Getparameter — Autodesk Get Parameter
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters/{parameterid}
PATCH
Updateparameter — Autodesk Update Parameter
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters/{parameterid}
DELETE
Deleteparameter — Autodesk Delete Parameter
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters/{parameterid}

MCP Tools

autodesk-list-parameters

Autodesk List Parameters

read-only idempotent
autodesk-create-parameter

Autodesk Create Parameter

autodesk-get-parameter

Autodesk Get Parameter

read-only idempotent
autodesk-update-parameter

Autodesk Update Parameter

idempotent
autodesk-delete-parameter

Autodesk Delete Parameter

idempotent

Capability Spec

parameters-parameters.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk Parameters API — Parameters
  description: 'Autodesk Parameters API — Parameters. 5 operations. Lead operation: Autodesk List Parameters. Self-contained
    Naftiko capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - Parameters
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTODESK_API_KEY: AUTODESK_API_KEY
capability:
  consumes:
  - type: http
    namespace: parameters-parameters
    baseUri: https://developer.api.autodesk.com
    description: Autodesk Parameters API — Parameters business capability. Self-contained, no shared references.
    resources:
    - name: parameters-v1-accounts-accountId-collections-collectionId-parameters
      path: /parameters/v1/accounts/{accountId}/collections/{collectionId}/parameters
      operations:
      - name: getparameters
        method: GET
        description: Autodesk List Parameters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
        - name: offset
          in: query
          type: integer
        - name: limit
          in: query
          type: integer
        - name: filter[groupId]
          in: query
          type: string
      - name: createparameter
        method: POST
        description: Autodesk Create Parameter
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: parameters-v1-accounts-accountId-collections-collectionId-parameters-parameterId
      path: /parameters/v1/accounts/{accountId}/collections/{collectionId}/parameters/{parameterId}
      operations:
      - name: getparameter
        method: GET
        description: Autodesk Get Parameter
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
        - name: parameterId
          in: path
          type: string
          required: true
      - name: updateparameter
        method: PATCH
        description: Autodesk Update Parameter
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
        - name: parameterId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteparameter
        method: DELETE
        description: Autodesk Delete Parameter
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
        - name: parameterId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: parameters-parameters-rest
    port: 8080
    description: REST adapter for Autodesk Parameters API — Parameters. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters
      name: parameters-v1-accounts-accountid-collections-collectionid-parameters
      description: REST surface for parameters-v1-accounts-accountId-collections-collectionId-parameters.
      operations:
      - method: GET
        name: getparameters
        description: Autodesk List Parameters
        call: parameters-parameters.getparameters
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
          offset: rest.offset
          limit: rest.limit
          filter[groupId]: rest.filter[groupId]
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createparameter
        description: Autodesk Create Parameter
        call: parameters-parameters.createparameter
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/parameters/{parameterid}
      name: parameters-v1-accounts-accountid-collections-collectionid-parameters-parameterid
      description: REST surface for parameters-v1-accounts-accountId-collections-collectionId-parameters-parameterId.
      operations:
      - method: GET
        name: getparameter
        description: Autodesk Get Parameter
        call: parameters-parameters.getparameter
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
          parameterId: rest.parameterId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateparameter
        description: Autodesk Update Parameter
        call: parameters-parameters.updateparameter
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
          parameterId: rest.parameterId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteparameter
        description: Autodesk Delete Parameter
        call: parameters-parameters.deleteparameter
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
          parameterId: rest.parameterId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: parameters-parameters-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk Parameters API — Parameters. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: autodesk-list-parameters
      description: Autodesk List Parameters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: parameters-parameters.getparameters
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
        offset: tools.offset
        limit: tools.limit
        filter[groupId]: tools.filter[groupId]
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-create-parameter
      description: Autodesk Create Parameter
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: parameters-parameters.createparameter
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-get-parameter
      description: Autodesk Get Parameter
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: parameters-parameters.getparameter
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
        parameterId: tools.parameterId
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-update-parameter
      description: Autodesk Update Parameter
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: parameters-parameters.updateparameter
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
        parameterId: tools.parameterId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-delete-parameter
      description: Autodesk Delete Parameter
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: parameters-parameters.deleteparameter
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
        parameterId: tools.parameterId
      outputParameters:
      - type: object
        mapping: $.