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

# View a filed document

> Returns the details of a filed document for a given case and filing.



## OpenAPI

````yaml /api-reference/api.yaml post /filings/documents/view
openapi: 3.0.3
info:
  title: api
  description: >-
    The API service is the secure public gateway to our platform, letting people
    access features without touching our private internal APIs. It authenticates
    clients with its own internal tokens and then routes their requests to the
    right internal services behind the scenes.
  version: 1.0.0
servers:
  - url: https://api.platform.arb.inc
security: []
tags:
  - name: cases
  - name: docket
  - name: evidence
  - name: filings
  - name: organization
  - name: participants
  - name: schemas
  - name: service-of-notice
paths:
  /filings/documents/view:
    post:
      tags:
        - filings
      summary: View a filed document
      description: Returns the details of a filed document for a given case and filing.
      operationId: postFilingsDocumentsView
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseID
                - filingID
              properties:
                caseID:
                  type: string
                  description: The case identifier.
                  example: 2025-08-00225
                filingID:
                  type: string
                  description: The filing identifier.
                  example: '15'
      responses:
        '200':
          description: Filed document returned.
          content:
            application/json:
              schema:
                type: object
                properties:
                  document:
                    type: object
                    properties:
                      created:
                        type: string
                        format: date-time
                        description: When the filing was created.
                        example: '2025-06-01T14:23:45Z'
                      updated:
                        type: string
                        format: date-time
                        description: When the filing was last updated.
                        example: '2025-06-10T09:15:00Z'
                      caseID:
                        type: string
                        description: Case ID the filing belongs to.
                        example: 2025-08-00225
                      filingID:
                        type: string
                        description: Unique filing record ID.
                        example: '15'
                      phaseID:
                        type: string
                        description: Phase in which the document was filed.
                        example: caseInitiation
                      documentId:
                        type: string
                        description: Type identifier of the filed document.
                        example: statementOfClaim
                      partyID:
                        type: string
                        description: Party on whose behalf the document was filed.
                        example: claimant
                      userID:
                        type: string
                        description: User who filed the document.
                        example: 74e7a465-6865-42b9-a1cf-a241bd8896d4
                      organizationID:
                        type: string
                        nullable: true
                        description: Organization ID of the user, if any.
                        example: 16d1224b-8f19-44c7-bfb0-47a6a272ff33
                      isSubmitted:
                        type: boolean
                        description: Whether the filing was submitted for review.
                        example: true
                      fields:
                        type: object
                        additionalProperties:
                          type: string
                        description: Map of field IDs to their text content.
                        example:
                          claimantName: Mike Smith
                          claimantAddress: 123 Main Street
                      approved:
                        type: string
                        format: date-time
                        nullable: true
                        description: When the filing was approved, if approved.
                        example: '2025-06-12T17:00:00Z'
                      approvedBy:
                        type: string
                        nullable: true
                        description: User ID of the approver, if approved.
                        example: 107b5300-6f89-4934-b188-b99594cf3c55
                      docketId:
                        type: string
                        nullable: true
                        description: Docket entry ID, if docketed.
                        example: '42'
        '404':
          description: The document or participant was not found.
          content:
            text/plain:
              schema:
                type: string
                example: Document not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````