Skip to main content
POST
/
docket
/
entries
/
statement-of-claim
Get a filed Statement of Claim
curl --request POST \
  --url https://cases.platform.arb.inc/docket/entries/statement-of-claim \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-11-00123"
}
'
{
  "entryID": "15",
  "userID": "user_5c2b1c8f-1a22-4c3f-9c77-21e5ab2a9f11",
  "organizationID": "org_2fd8f3a9-5d0b-4c61-9f86-7c3b9e2e4a12",
  "fields": {
    "claimantName": "Jane Doe",
    "respondentName": "Acme Corp",
    "amountClaimed": "15000",
    "filingDate": "2025-10-21"
  }
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Case identifier (1–50 chars).

Example:

"2025-11-00123"

Response

Statement of claim found and returned.

entryID
string

Docket ID of the document entry.

Example:

"15"

userID
string

ID of the user who filed the document.

Example:

"user_5c2b1c8f-1a22-4c3f-9c77-21e5ab2a9f11"

organizationID
string | null

Organization ID of the filing user, if any.

Example:

"org_2fd8f3a9-5d0b-4c61-9f86-7c3b9e2e4a12"

fields
object

Key-value pairs for document fields.

Example:
{
"claimantName": "Jane Doe",
"respondentName": "Acme Corp",
"amountClaimed": "15000",
"filingDate": "2025-10-21"
}