cURL
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 }
Generates a signed URL to download the PDF file for a specific docket entry. The URL is valid for a limited time.
access token
Unique identifier of the case
"2025-08-00292"
Unique identifier of the docket entry
"1"
Successfully generated PDF download URL
"https://storage.googleapis.com/secure-storage.arb.inc/cases/2025-08-00292/docket/1.pdf?X-Goog-Signature=..."
3600