> ## Documentation Index
> Fetch the complete documentation index at: https://densify-sync-changelog-2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Report PDF

> Downloads the Impact Analysis and Recommendation Report (Application Owner report) as a PDF.
Use `Accept: application/octet-stream` to download the file.




## OpenAPI

````yaml /openapi/systems.yaml GET /systems/{id}/analysis-report
openapi: 3.0.3
info:
  title: Kubex Systems API
  version: 1.0.0
  description: >
    Endpoints for retrieving and managing systems discovered via Kubex data
    collection.


    Notes:

    - Returned element values match those shown in Kubex Analysis Console (DSE >
    System Summary / Attributes).

    - Filtering supports element filters and advanced attribute filters (see
    query parameters on `GET /systems`).

    - Some fields appear only when `details=true` is requested.
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
        description: Replace with your Kubex API host
security:
  - bearerAuth: []
tags:
  - name: Systems
    description: Systems collection and single-system resources
paths:
  /systems/{id}/analysis-report:
    get:
      tags:
        - Systems
      summary: Get Report PDF
      description: >
        Downloads the Impact Analysis and Recommendation Report (Application
        Owner report) as a PDF.

        Use `Accept: application/octet-stream` to download the file.
      operationId: downloadAnalysisReport
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Kubex unique system ID
      responses:
        '200':
          description: PDF report
          headers:
            Content-Disposition:
              description: Suggested filename for the downloaded PDF
              schema:
                type: string
                example: attachment; filename="analysis-report.pdf"
          content:
            application/pdf:
              schema:
                type: string
                format: binary
            application/octet-stream:
              schema:
                type: string
                format: binary
        '401':
          description: Unauthorized
        '404':
          description: System or report not found
        '500':
          description: Internal server error
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````