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

# Regenerate Report

> Re-run generation for an existing report (its scope and sections are kept).



## OpenAPI

````yaml /api-reference/openapi.json post /api/reports/{report_id}/regenerate
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/reports/{report_id}/regenerate:
    post:
      tags:
        - reports
      summary: Regenerate Report
      description: >-
        Re-run generation for an existing report (its scope and sections are
        kept).
      operationId: regenerate_report_api_reports__report_id__regenerate_post
      parameters:
        - name: report_id
          in: path
          required: true
          schema:
            type: string
            title: Report Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReportRead:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        status:
          type: string
          title: Status
        format:
          type: string
          title: Format
        project_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Project Id
        dataset_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Dataset Id
        template_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Template Id
        scan_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Scan Ids
        file_path:
          anyOf:
            - type: string
            - type: 'null'
          title: File Path
        file_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: File Size
        progress:
          type: integer
          title: Progress
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        content_summary:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Content Summary
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
      type: object
      required:
        - id
        - name
        - description
        - status
        - format
        - project_id
        - dataset_id
        - template_id
        - scan_ids
        - file_path
        - file_size
        - progress
        - message
        - content_summary
        - created_at
        - updated_at
        - started_at
        - completed_at
      title: ReportRead
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````