Skip to main content
POST
/
evidence
/
uploads
/
delete
Delete an uploaded evidence file
curl --request POST \
  --url https://cases.platform.arb.inc/evidence/uploads/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00123",
  "uploadID": "32"
}
'
"upload successfully deleted"

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 to delete.

Maximum string length: 36
Example:

"32"

Response

Upload deleted.

The response is of type string.

Example:

"upload successfully deleted"