Skip to main content
POST
/
invites
/
docket
/
pdf
Get a temporary PDF download link
curl --request POST \
  --url https://cases.platform.arb.inc/invites/docket/pdf \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "ab12cd34ef56",
  "entryID": "21"
}
'
{
  "url": "https://files.example.com/dockets/5e9b8f1a.pdf?sig=xyz&exp=1699999999",
  "validForSeconds": 600
}

Body

application/json
code
string
required

Invite code used to access the docket entry.

Example:

"ab12cd34ef56"

entryID
string
required

Unique ID of the docket entry whose PDF link is requested.

Example:

"21"

Response

Temporary link successfully created.

url
string

The signed URL to download the PDF.

Example:

"https://files.example.com/dockets/5e9b8f1a.pdf?sig=xyz&exp=1699999999"

validForSeconds
integer

Number of seconds the URL will remain valid.

Example:

600