Skip to main content
POST
/
evidence
/
uploads
/
make-public
Make an evidence upload public
curl --request POST \
  --url https://cases.platform.arb.inc/evidence/uploads/make-public \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-09-00123",
  "uploadID": "4"
}
'
{
  "exhibitID": "2"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The case ID where the evidence belongs. Max length 36.

Example:

"2025-09-00123"

uploadID
string
required

The upload ID of the evidence to make public. Max length 36.

Example:

"4"

Response

Evidence was made public and assigned an exhibit ID.

exhibitID
string

The resulting exhibit ID.

Example:

"2"