> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mindfort.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Proxy Dashboard API (DELETE)

> Authenticated agent gateway proxy to dashboard API routes. Paths under `/v1/api` are forwarded to the matching `/api/v1` route. Required scopes depend on the upstream route.



## OpenAPI

````yaml /openapi.json delete /v1/api/*
openapi: 3.1.0
info:
  title: MindFort API
  version: 1.0.0
  description: >-
    The MindFort Public API allows you to programmatically trigger assessments
    and tasks, browse targets and findings, and manage finding triage state.
    Authenticate using a Bearer API key generated from the MindFort dashboard.
servers:
  - url: https://api.mindfort.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/api/*:
    delete:
      tags:
        - Agent Gateway
      summary: Proxy Dashboard API (DELETE)
      description: >-
        Authenticated agent gateway proxy to dashboard API routes. Paths under
        `/v1/api` are forwarded to the matching `/api/v1` route. Required scopes
        depend on the upstream route.
      operationId: proxyDashboardAPIDelete
      parameters:
        - name: path
          in: path
          required: true
          description: Remainder of the dashboard API path after `/v1/api`
          schema:
            type: string
      responses:
        '200':
          description: Upstream dashboard API response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '204':
          description: Upstream dashboard API response with no content
        '401':
          description: Unauthorized – missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Agent credential lacks the required scope for the upstream route
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Dashboard API unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        request_id:
          type: string
          description: Unique request identifier for debugging
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````