Skip to main content
POST
/
invites
/
case
/
view
View a case using an invite code
curl --request POST \
  --url https://cases.platform.arb.inc/invites/case/view \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "ab12cd34ef"
}
'
{
  "overview": {
    "id": "2025-09-00123",
    "created": "2025-08-21T14:07:12Z",
    "title": "Smith v. Acme Corp.",
    "claimantName": "Jordan Smith",
    "respondentName": "Acme Corporation"
  },
  "settlement": {
    "phone": "+1-555-0102",
    "email": "[email protected]",
    "website": "https://settle.example.com/case/c17c3433",
    "amount": "2500.00",
    "offer": "1800.00",
    "validForDays": 14
  },
  "docketEntries": [
    {
      "entryID": "1",
      "enteredAt": "2025-08-22T09:15:00Z",
      "documentID": "statementOfClaim",
      "partyID": "claimant",
      "title": "Statement of Claim"
    }
  ],
  "evidence": [
    {
      "exhibitID": "5",
      "created": "2025-08-23T11:22:33Z",
      "categoryID": "image",
      "partyID": "claimant",
      "description": "Screenshot of invoice #INV-4452",
      "contentType": "image/png"
    }
  ]
}

Body

application/json
code
string
required

The invite code from the link or message.

Example:

"ab12cd34ef"

Response

Case found and returned.

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