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"
}
]
}Takes a simple code and returns a basic view of the case.
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"
}
]
}The invite code from the link or message.
"ab12cd34ef"
Case found and returned.
Show child attributes
Unique identifier for the case.
"2025-09-00123"
When the case was created.
"2025-08-21T14:07:12Z"
Simple title for the case.
"Smith v. Acme Corp."
Name of the claimant if known.
"Jordan Smith"
Name of the respondent if known.
"Acme Corporation"
Show child attributes
Contact phone for settlement.
"+1-555-0102"
Contact email for settlement.
Website or portal for settlement info.
"https://settle.example.com/case/c17c3433"
Amount the claimant says is owed.
"2500.00"
Current settlement offer.
"1800.00"
Days the offer stays valid.
14
Show child attributes
ID for this docket entry.
"5"
When the entry was filed.
"2025-08-22T09:15:00Z"
Type of document.
"statementOfClaim"
Party role tied to the entry.
"claimant"
Short title for the entry.
"Statement of Claim"
Show child attributes
When the evidence was submitted.
"2025-08-23T11:22:33Z"
Exhibit identifier in the docket.
"4"
Evidence category.
"image"
Party linked to the evidence.
"claimant"
Text description of the evidence.
"Screenshot of invoice #INV-4452"
MIME type of the file.
"image/png"