Skip to main content
POST
/
evidence
/
uploads
/
update
Update an evidence upload description
curl --request POST \
  --url https://cases.platform.arb.inc/evidence/uploads/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "a1b2c3d4-e5f6-7890-ab12-34567890cdef",
  "uploadID": "0f1e2d3c-4b5a-6789-0abc-def123456789",
  "description": "Updated exhibit description clarifying the timeframe and source."
}
'
"description successfully updated"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Case ID. Required. Max 36 characters.

Example:

"a1b2c3d4-e5f6-7890-ab12-34567890cdef"

uploadID
string
required

Upload ID. Required. Max 36 characters.

Example:

"0f1e2d3c-4b5a-6789-0abc-def123456789"

description
string
required

New description text. Required. Max 500 characters.

Example:

"Updated exhibit description clarifying the timeframe and source."

Response

Description successfully updated.

The response is of type string.

Example:

"description successfully updated"