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

# Export case to ZIP archive

> Exports all case documents and evidence files into a compressed ZIP archive for download. The ZIP is streamed directly back to the requester.



## OpenAPI

````yaml api-reference/cases.yaml post /cases/export
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/export:
    post:
      tags:
        - cases
      summary: Export case to ZIP archive
      description: >-
        Exports all case documents and evidence files into a compressed ZIP
        archive for download. The ZIP is streamed directly back to the
        requester.
      operationId: exportCase
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseID
              properties:
                caseID:
                  type: string
                  description: Case identifier
                  example: 2025-08-00292
      responses:
        '200':
          description: ZIP stream is returned for download
          headers:
            Content-Type:
              schema:
                type: string
                example: application/zip
              example: application/zip
            Content-Disposition:
              schema:
                type: string
                example: attachment; filename="2025-08-00292.zip"
              example: attachment; filename="2025-08-00292.zip"
          content:
            application/zip:
              schema:
                type: string
                format: binary
        '404':
          description: Case not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````