Skip to main content
POST
/
docket
/
entries
/
pdf
Get a signed PDF URL for a docket entry
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
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Unique identifier of the case containing the docket entry (max 36 characters).

Example:

"2025-08-00059"

entryID
string
required

Unique identifier of the docket entry whose PDF URL is requested (max 36 characters).

Example:

"51"

Response

Signed URL successfully generated.

url
string<uri>

Time-limited signed URL for downloading the PDF.

Example:

"https://secure-storage.arb.inc/cases/dockets/2025-08-00059/51.pdf?expires=1734048000&sig=ZXhhbXBsZVNpZw"

validForSeconds
integer

Number of seconds the URL remains valid.

Example:

300