> ## 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 via invite

> Returns case details accessible via an invite code without requiring authentication. Allows prospective participants to view case information before accepting the invite.



## OpenAPI

````yaml api-reference/cases.yaml post /invites/case/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:
  /invites/case/view:
    post:
      tags:
        - invites
      summary: View case via invite
      description: >-
        Returns case details accessible via an invite code without requiring
        authentication. Allows prospective participants to view case information
        before accepting the invite.
      operationId: viewCaseByInvite
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - code
              properties:
                code:
                  type: string
                  description: Invite code
                  example: abc123xyz
      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'
                      title:
                        type: string
                        example: ARB Case 2025-08-00292
                      claimantName:
                        type: string
                        example: John Smith
                      respondentName:
                        type: string
                        example: Jane Doe
                      disputeAmount:
                        type: string
                        example: 5000
                  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
                  docketEntries:
                    type: array
                    items:
                      type: object
                      properties:
                        entryID:
                          type: string
                          example: '1'
                        enteredAt:
                          type: string
                          format: date-time
                          example: '2025-08-15T10:30:00.000Z'
                        documentID:
                          type: string
                          example: statementOfClaim
                        partyID:
                          type: string
                          example: claimant
                        title:
                          type: string
                          example: Statement of Claim
                  evidence:
                    type: array
                    items:
                      type: object
                      properties:
                        exhibitID:
                          type: string
                          example: A-1
                        created:
                          type: string
                          format: date-time
                          example: '2025-08-15T10:30:00.000Z'
                        categoryID:
                          type: string
                          example: contract
                        partyID:
                          type: string
                          example: claimant
                        description:
                          type: string
                          example: Signed service agreement
                        contentType:
                          type: string
                          example: application/pdf
        '410':
          description: Invite code is invalid

````