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

# Download docket PDF via invite

> Generates a signed URL to download a docket entry PDF using an invite code. Allows viewing documents without authentication.



## OpenAPI

````yaml api-reference/cases.yaml post /invites/docket/pdf
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/docket/pdf:
    post:
      tags:
        - invites
      summary: Download docket PDF via invite
      description: >-
        Generates a signed URL to download a docket entry PDF using an invite
        code. Allows viewing documents without authentication.
      operationId: getDocketPDFByInvite
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - code
                - entryID
              properties:
                code:
                  type: string
                  description: Invite code
                  example: abc123xyz
                entryID:
                  type: string
                  description: Docket entry identifier
                  example: '1'
      responses:
        '200':
          description: Successfully generated PDF download URL
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    format: uri
                    example: >-
                      https://storage.googleapis.com/secure-storage.arb.inc/cases/2025-08-00292/docket/1.pdf?X-Goog-Signature=...
                  validForSeconds:
                    type: integer
                    example: 3600

````