Skip to main content
POST
/
filings
/
documents
/
pdf
Get a temporary PDF URL for a filed document
curl --request POST \
  --url https://cases.platform.arb.inc/filings/documents/pdf \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00123",
  "filingID": "2"
}
'
{
  "url": "https://secure-storage.arb.inc/filings/2025-08-00123/22",
  "validForSeconds": 3600
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Unique identifier of the case that contains the filed document.

Maximum string length: 36
Example:

"2025-08-00123"

filingID
string
required

Unique identifier of the filed document whose PDF URL is requested.

Maximum string length: 36
Example:

"2"

Response

Signed URL generated successfully.

url
string<uri>

Temporary URL to download the PDF.

Example:

"https://secure-storage.arb.inc/filings/2025-08-00123/22"

validForSeconds
integer

Number of seconds the URL remains valid.

Example:

3600