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

# Add Supporting Information

> Submits supporting information for a specific prior authorization including claim history and test claims



## OpenAPI

````yaml POST /prior_auths/{prior_auth_id}/supporting_information
openapi: 3.1.0
info:
  title: CaseHealth API
  description: API for managing prior authorizations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.casehealth.ai/api/v1/
security:
  - apiKeyAuth: []
paths:
  /prior_auths/{prior_auth_id}/supporting_information:
    post:
      description: >-
        Submits supporting information for a specific prior authorization
        including claim history and test claims
      parameters:
        - name: prior_auth_id
          in: path
          description: Unique identifier of the prior authorization
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        description: Supporting information including claim history and test claims
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SupportingInformation'
        required: true
      responses:
        '201':
          description: Supporting information submitted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: Status of the submission. `Succeeded` `Failed`
        '400':
          description: Bad request - Invalid prior authorization ID or request data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Prior authorization not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SupportingInformation:
      type: object
      properties:
        claim_history:
          type: object
          properties:
            data:
              type: array
              description: Array of claim history records
              items:
                type: object
                properties:
                  claim_id:
                    type: string
                    description: Unique identifier for the claim
                  date:
                    type: string
                    format: date
                    description: Date of the claim
                  type:
                    type: string
                    description: Type of claim
                    enum:
                      - pharmacy
                      - medical
                  status:
                    type: string
                    description: Status of the claim
                    enum:
                      - paid
                      - denied
                      - pending
                  drug_name:
                    type: string
                    description: Name of the drug (for pharmacy claims)
                  ndc:
                    type: string
                    description: National Drug Code (for pharmacy claims)
                  procedure_code:
                    type: string
                    description: Procedure code (for medical claims)
                required:
                  - claim_id
                  - date
                  - type
                  - status
        test_claim:
          type: object
          properties:
            data:
              type: object
              description: Test claim information
              properties:
                claim_id:
                  type: string
                  description: Unique identifier for the test claim
                date:
                  type: string
                  format: date
                  description: Date of the test claim
                status:
                  type: string
                  description: Status of the test claim
                  enum:
                    - pending
                    - approved
                    - denied
                expected_coverage:
                  type: boolean
                  description: Whether coverage is expected for this test claim
                adjudication_notes:
                  type: string
                  description: Notes regarding the adjudication of the test claim
              required:
                - claim_id
                - date
                - status
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````