Skip to main content
POST
/
invites
/
case
/
view
View case via invite
curl --request POST \
  --url https://cases.platform.arb.inc/invites/case/view \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "abc123xyz"
}
'
{
  "overview": {
    "id": "2025-08-00292",
    "created": "2025-08-15T10:30:00.000Z",
    "title": "ARB Case 2025-08-00292",
    "claimantName": "John Smith",
    "respondentName": "Jane Doe",
    "disputeAmount": 5000
  },
  "settlement": {
    "phone": "+1-555-123-4567",
    "email": "user@example.com",
    "website": "https://example.com/settlement",
    "amount": 5000,
    "offer": 4000,
    "validForDays": 30
  },
  "docketEntries": [
    {
      "entryID": "1",
      "enteredAt": "2025-08-15T10:30:00.000Z",
      "documentID": "statementOfClaim",
      "partyID": "claimant",
      "title": "Statement of Claim"
    }
  ],
  "evidence": [
    {
      "exhibitID": "A-1",
      "created": "2025-08-15T10:30:00.000Z",
      "categoryID": "contract",
      "partyID": "claimant",
      "description": "Signed service agreement",
      "contentType": "application/pdf"
    }
  ]
}

Body

application/json
code
string
required

Invite code

Example:

"abc123xyz"

Response

Successfully retrieved case details

overview
object
settlement
object
docketEntries
object[]
evidence
object[]