Skip to main content
POST
/
evidence
/
uploads
/
download
Get a download link for an uploaded file
curl --request POST \
  --url https://api.platform.arb.inc/evidence/uploads/download \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00123",
  "uploadID": "3"
}
'
{
  "url": "https://secure-storage.arb.inc/uploads/2025-08-00123/22",
  "validForSeconds": 600
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The case identifier.

Maximum string length: 36
Example:

"2025-08-00123"

uploadID
string
required

The upload identifier for which to generate a download URL.

Maximum string length: 36
Example:

"3"

Response

Signed download URL generated.

url
string<uri>

Time-limited URL for downloading the file.

Example:

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

validForSeconds
integer

How long the URL is valid, in seconds.

Example:

600