Skip to main content
POST
/
evidence
/
uploads
/
list
List evidence uploads for a case
curl --request POST \
  --url https://cases.platform.arb.inc/evidence/uploads/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00123"
}
'
{
  "uploads": [
    {
      "created": "2025-08-29T15:41:19Z",
      "uploadID": "1",
      "categoryID": "image",
      "phaseID": "caseInitiation",
      "partyID": "claimant",
      "userID": "00c573fd-18d9-4fbe-921e-6926d2c4869e",
      "organizationID": "8a922e11-1821-4923-a860-58683cbda9a2",
      "description": "Photo of the building",
      "contentType": "application/png"
    },
    {
      "created": "2025-08-29T15:45:09Z",
      "uploadID": "2",
      "categoryID": "document",
      "phaseID": "caseInitiation",
      "partyID": "claimant",
      "userID": "00c573fd-18d9-4fbe-921e-6926d2c4869e",
      "organizationID": "8a922e11-1821-4923-a860-58683cbda9a2",
      "description": "Terms of service",
      "contentType": "application/pdf"
    }
  ]
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The case identifier to look up uploads for.

Required string length: 1 - 36
Example:

"2025-08-00123"

Response

Successfully returned uploads the user is allowed to access.

uploads
object[]

List of evidence uploads visible to the user.