> ## 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 all tasks

> Returns all pending tasks the authenticated user can complete across all cases they are involved in.



## OpenAPI

````yaml api-reference/cases.yaml post /tasks/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:
  /tasks/list:
    post:
      tags:
        - tasks
      summary: List all tasks
      description: >-
        Returns all pending tasks the authenticated user can complete across all
        cases they are involved in.
      operationId: listAllTasks
      responses:
        '200':
          description: Successfully retrieved tasks
          content:
            application/json:
              schema:
                type: object
                properties:
                  tasks:
                    type: array
                    items:
                      type: object
                      properties:
                        taskID:
                          type: string
                          format: uuid
                          example: 2720f109-0caf-4c62-af22-5d08c853711c
                        caseID:
                          type: string
                          example: 2025-08-00292
                        type:
                          type: string
                          example: file_document
                        description:
                          type: string
                          example: File your Statement of Claim
                        dueDate:
                          type: string
                          format: date-time
                          example: '2025-08-22T10:30:00.000Z'
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````