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-00059", "entryID": "51" } '
{ "url": "https://secure-storage.arb.inc/cases/dockets/2025-08-00059/51.pdf?expires=1734048000&sig=ZXhhbXBsZVNpZw", "validForSeconds": 300 }
Returns a time-limited, signed URL to download the PDF for a specific docket entry within a case.
access token
Unique identifier of the case containing the docket entry (max 36 characters).
"2025-08-00059"
Unique identifier of the docket entry whose PDF URL is requested (max 36 characters).
"51"
Signed URL successfully generated.
Time-limited signed URL for downloading the PDF.
"https://secure-storage.arb.inc/cases/dockets/2025-08-00059/51.pdf?expires=1734048000&sig=ZXhhbXBsZVNpZw"
Number of seconds the URL remains valid.
300