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

# List user's cases

> Returns a list of all active and closed cases that the authenticated user is associated with, including participant details and current phase information.



## OpenAPI

````yaml api-reference/cases.yaml post /cases/list
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/list:
    post:
      tags:
        - cases
      summary: List user's cases
      description: >-
        Returns a list of all active and closed cases that the authenticated
        user is associated with, including participant details and current phase
        information.
      operationId: listCases
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                cursor:
                  type: string
                  format: date-time
                  description: Pagination cursor for fetching next page
                  example: '2025-08-15T10:30:00.000Z'
      responses:
        '200':
          description: Successfully retrieved cases
          content:
            application/json:
              schema:
                type: object
                properties:
                  cases:
                    type: array
                    items:
                      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
                            claimantName:
                              type: string
                              example: John Smith
                            respondentName:
                              type: string
                              example: Jane Doe
                            isCaseClosed:
                              type: boolean
                              example: false
                            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
                  cursor:
                    type: string
                    format: date-time
                    example: '2025-08-15T10:30:00.000Z'
                  moreCases:
                    type: boolean
                    example: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````