Skip to main content
POST
/
docket
/
entries
/
pdf
Download docket entry PDF
curl --request POST \
  --url https://cases.platform.arb.inc/docket/entries/pdf \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292",
  "entryID": "1"
}
'
{
  "url": "https://storage.googleapis.com/secure-storage.arb.inc/cases/2025-08-00292/docket/1.pdf?X-Goog-Signature=...",
  "validForSeconds": 3600
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Unique identifier of the case

Example:

"2025-08-00292"

entryID
string
required

Unique identifier of the docket entry

Example:

"1"

Response

Successfully generated PDF download URL

url
string<uri>
Example:

"https://storage.googleapis.com/secure-storage.arb.inc/cases/2025-08-00292/docket/1.pdf?X-Goog-Signature=..."

validForSeconds
integer
Example:

3600