AppDynamics · Capability

AppDynamics Configuration API — Custom Dashboards Export/Import

AppDynamics Configuration API — Custom Dashboards Export/Import. 2 operations. Lead operation: Export a custom dashboard. Self-contained Naftiko capability covering one Appdynamics business surface.

Run with Naftiko AppdynamicsCustom Dashboards Export/Import

What You Can Do

GET
Exportcustomdashboard — Export a custom dashboard
/v1/customdashboardimportexportservlet
POST
Importcustomdashboard — Import a custom dashboard
/v1/customdashboardimportexportservlet

MCP Tools

export-custom-dashboard

Export a custom dashboard

read-only idempotent
import-custom-dashboard

Import a custom dashboard

Capability Spec

configuration-custom-dashboards-export-import.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AppDynamics Configuration API — Custom Dashboards Export/Import
  description: 'AppDynamics Configuration API — Custom Dashboards Export/Import. 2 operations. Lead operation: Export a custom
    dashboard. Self-contained Naftiko capability covering one Appdynamics business surface.'
  tags:
  - Appdynamics
  - Custom Dashboards Export/Import
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPDYNAMICS_API_KEY: APPDYNAMICS_API_KEY
capability:
  consumes:
  - type: http
    namespace: configuration-custom-dashboards-export-import
    baseUri: https://{controller-host}/controller
    description: AppDynamics Configuration API — Custom Dashboards Export/Import business capability. Self-contained, no shared
      references.
    resources:
    - name: CustomDashboardImportExportServlet
      path: /CustomDashboardImportExportServlet
      operations:
      - name: exportcustomdashboard
        method: GET
        description: Export a custom dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: dashboardId
          in: query
          type: integer
          description: The numeric ID of the custom dashboard to export.
          required: true
      - name: importcustomdashboard
        method: POST
        description: Import a custom dashboard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.APPDYNAMICS_API_KEY}}'
  exposes:
  - type: rest
    namespace: configuration-custom-dashboards-export-import-rest
    port: 8080
    description: REST adapter for AppDynamics Configuration API — Custom Dashboards Export/Import. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/customdashboardimportexportservlet
      name: customdashboardimportexportservlet
      description: REST surface for CustomDashboardImportExportServlet.
      operations:
      - method: GET
        name: exportcustomdashboard
        description: Export a custom dashboard
        call: configuration-custom-dashboards-export-import.exportcustomdashboard
        with:
          dashboardId: rest.dashboardId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: importcustomdashboard
        description: Import a custom dashboard
        call: configuration-custom-dashboards-export-import.importcustomdashboard
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configuration-custom-dashboards-export-import-mcp
    port: 9090
    transport: http
    description: MCP adapter for AppDynamics Configuration API — Custom Dashboards Export/Import. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: export-custom-dashboard
      description: Export a custom dashboard
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-custom-dashboards-export-import.exportcustomdashboard
      with:
        dashboardId: tools.dashboardId
      outputParameters:
      - type: object
        mapping: $.
    - name: import-custom-dashboard
      description: Import a custom dashboard
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configuration-custom-dashboards-export-import.importcustomdashboard
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.