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

# Regenerate document analysis

> Manually triggers re-analysis of a docketed document, bypassing idempotency checks. Requires `admin.platform.super` permission.



## OpenAPI

````yaml api-reference/ai.yaml post /analysis/regenerate
openapi: 3.0.3
info:
  title: ai
  description: >-
    The AI Service acts as the intelligence hub of the arbitration platform,
    powering smart automation, analysis, and decision support. It centralizes
    all AI integrations, ensuring seamless and consistent AI functionality
    across every part of the system.
  version: 1.0.0
servers:
  - url: https://ai.platform.arb.inc
security: []
tags:
  - name: /
  - name: analysis
  - name: demo
  - name: generate-award
  - name: generate-document
  - name: process
  - name: prompts
paths:
  /analysis/regenerate:
    post:
      tags:
        - analysis
      summary: Regenerate document analysis
      description: >-
        Manually triggers re-analysis of a docketed document, bypassing
        idempotency checks. Requires `admin.platform.super` permission.
      operationId: regenerateDocumentAnalysis
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseID
                - filingID
              properties:
                caseID:
                  type: string
                  description: Unique case identifier
                  example: 2720f109-0caf-4c62-af22-5d08c853711c
                filingID:
                  type: string
                  description: Unique filing identifier for the document
                  example: filing_2026-01-12345
      responses:
        '200':
          description: Analysis queued successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: queued
        '404':
          description: Document not found for the specified case and filing
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````