> ## 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.

# View case details

> Returns comprehensive information about a specific case including participants, timetable, settlement details, and current phase. Only available to case participants.



## OpenAPI

````yaml api-reference/cases.yaml post /cases/view
openapi: 3.0.3
info:
  title: cases
  description: >-
    The Cases Service is the main place where all case info lives, including who
    is involved and what files are attached. It lets you create new cases, view
    existing ones, upload documents or files, and manage service of notice
    delivery through multiple channels (mail, email, or manual attestation),
    while notifying other parts of the system when anything changes.
  version: 1.0.0
servers:
  - url: https://cases.platform.arb.inc
security: []
tags:
  - name: /
  - name: cases
  - name: docket
  - name: evidence
  - name: filings
  - name: internal
  - name: invites
  - name: participants
  - name: schemas
  - name: service-of-notice
  - name: tasks
  - name: timetables
paths:
  /cases/view:
    post:
      tags:
        - cases
      summary: View case details
      description: >-
        Returns comprehensive information about a specific case including
        participants, timetable, settlement details, and current phase. Only
        available to case participants.
      operationId: viewCase
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseID
              properties:
                caseID:
                  type: string
                  description: Unique identifier for the case
                  example: 2025-08-00292
      responses:
        '200':
          description: Successfully retrieved case details
          content:
            application/json:
              schema:
                type: object
                properties:
                  overview:
                    type: object
                    properties:
                      id:
                        type: string
                        example: 2025-08-00292
                      created:
                        type: string
                        format: date-time
                        example: '2025-08-15T10:30:00.000Z'
                      updated:
                        type: string
                        format: date-time
                        example: '2025-08-15T10:30:00.000Z'
                      createdByUserID:
                        type: string
                        format: uuid
                        example: 2720f109-0caf-4c62-af22-5d08c853711c
                      createdByOrgID:
                        type: string
                        format: uuid
                        example: 2720f109-0caf-4c62-af22-5d08c853711c
                      phaseID:
                        type: string
                        example: caseInitiation
                      title:
                        type: string
                        example: ARB Case 2025-08-00292
                      canSubmitEvidence:
                        type: boolean
                        example: true
                      claimantName:
                        type: string
                        example: John Smith
                      respondentName:
                        type: string
                        example: Jane Doe
                      isCaseClosed:
                        type: boolean
                        example: false
                      disputeAmount:
                        type: string
                        example: 5000
                      responseDeadlineDays:
                        type: integer
                        example: 7
                      calculatedResponseDeadline:
                        type: string
                        format: date-time
                        example: '2025-08-22T10:30:00.000Z'
                      respondentFeePayerID:
                        type: string
                        format: uuid
                        example: 2720f109-0caf-4c62-af22-5d08c853711c
                  participants:
                    type: array
                    items:
                      type: object
                      properties:
                        created:
                          type: string
                          format: date-time
                          example: '2025-08-15T10:30:00.000Z'
                        userID:
                          type: string
                          format: uuid
                          example: 2720f109-0caf-4c62-af22-5d08c853711c
                        organizationID:
                          type: string
                          format: uuid
                          example: 2720f109-0caf-4c62-af22-5d08c853711c
                        firstName:
                          type: string
                          example: John
                        lastName:
                          type: string
                          example: Smith
                        partyID:
                          type: string
                          example: claimant
                        isPrimary:
                          type: boolean
                          example: true
                        isObserver:
                          type: boolean
                          example: false
                  partyID:
                    type: string
                    example: claimant
                  timetable:
                    type: object
                    description: The procedural timetable for the case
                  settlement:
                    type: object
                    properties:
                      phone:
                        type: string
                        example: +1-555-123-4567
                      email:
                        type: string
                        example: user@example.com
                      website:
                        type: string
                        example: https://example.com/settlement
                      amount:
                        type: string
                        example: 5000
                      offer:
                        type: string
                        example: 4000
                      validForDays:
                        type: integer
                        example: 30
        '404':
          description: Case not found
        '410':
          description: User is not a participant
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````