Skip to main content
POST
/
filings
/
documents
/
view
View a filed document
curl --request POST \
  --url https://cases.platform.arb.inc/filings/documents/view \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00225",
  "filingID": "15"
}
'
{
  "document": {
    "created": "2025-06-01T14:23:45Z",
    "updated": "2025-06-10T09:15:00Z",
    "caseID": "2025-08-00225",
    "filingID": "15",
    "phaseID": "caseInitiation",
    "documentId": "statementOfClaim",
    "partyID": "claimant",
    "userID": "74e7a465-6865-42b9-a1cf-a241bd8896d4",
    "organizationID": "16d1224b-8f19-44c7-bfb0-47a6a272ff33",
    "isSubmitted": true,
    "fields": {
      "claimantName": "Mike Smith",
      "claimantAddress": "123 Main Street"
    },
    "approved": "2025-06-12T17:00:00Z",
    "approvedBy": "107b5300-6f89-4934-b188-b99594cf3c55",
    "docketId": "42"
  }
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The case identifier.

Example:

"2025-08-00225"

filingID
string
required

The filing identifier.

Example:

"15"

Response

Filed document returned.

document
object