cURL
curl --request POST \ --url https://cases.platform.arb.inc/internal/case-files \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "caseID": "2025-11-00123" } '
{ "documents": [ { "gsUrl": "gs://storage/2025-11-00123/dockets/1.pdf", "contentType": "application/pdf", "documentID": "statementOfClaim", "number": "12", "partyID": "claimant" } ], "exhibits": [ { "gsUrl": "gs://storage/2025-11-00123/exhibits/21.pdf", "contentType": "application/pdf", "number": "21", "partyID": "respondent", "description": "Email chain from May 2025" } ] }
Internal API that returns documents and exhibit files for a case.
access token
Case identifier (1–50 characters).
"2025-11-00123"
Case files successfully returned.
List of related documents.
Show child attributes
GCS URL for the document (must start with gs://).
"gs://storage/2025-11-00123/dockets/1.pdf"
MIME type of the document.
"application/pdf"
ID representing the document type.
"statementOfClaim"
Docket number.
"12"
Party that submitted the filing.
"claimant"
List of related exhibits.
GCS URL for the exhibit (must start with gs://).
"gs://storage/2025-11-00123/exhibits/21.pdf"
MIME type of the exhibit file.
Exhibit number.
"21"
Party that submitted the exhibit.
"respondent"
Short description of the exhibit.
"Email chain from May 2025"