Skip to main content
POST
/
cases
/
view
View case details
curl --request POST \
  --url https://cases.platform.arb.inc/cases/view \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292"
}
'
{
  "overview": {
    "id": "2025-08-00292",
    "created": "2025-08-15T10:30:00.000Z",
    "updated": "2025-08-15T10:30:00.000Z",
    "createdByUserID": "2720f109-0caf-4c62-af22-5d08c853711c",
    "createdByOrgID": "2720f109-0caf-4c62-af22-5d08c853711c",
    "phaseID": "caseInitiation",
    "title": "ARB Case 2025-08-00292",
    "canSubmitEvidence": true,
    "claimantName": "John Smith",
    "respondentName": "Jane Doe",
    "isCaseClosed": false,
    "disputeAmount": 5000,
    "responseDeadlineDays": 7,
    "calculatedResponseDeadline": "2025-08-22T10:30:00.000Z",
    "respondentFeePayerID": "2720f109-0caf-4c62-af22-5d08c853711c"
  },
  "participants": [
    {
      "created": "2025-08-15T10:30:00.000Z",
      "userID": "2720f109-0caf-4c62-af22-5d08c853711c",
      "organizationID": "2720f109-0caf-4c62-af22-5d08c853711c",
      "firstName": "John",
      "lastName": "Smith",
      "partyID": "claimant",
      "isPrimary": true,
      "isObserver": false
    }
  ],
  "partyID": "claimant",
  "timetable": {},
  "settlement": {
    "phone": "+1-555-123-4567",
    "email": "user@example.com",
    "website": "https://example.com/settlement",
    "amount": 5000,
    "offer": 4000,
    "validForDays": 30
  }
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Unique identifier for the case

Example:

"2025-08-00292"

Response

Successfully retrieved case details

overview
object
participants
object[]
partyID
string
Example:

"claimant"

timetable
object

The procedural timetable for the case

settlement
object