cURL
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" } ] }
Returns case details accessible via an invite code without requiring authentication. Allows prospective participants to view case information before accepting the invite.
Invite code
"abc123xyz"
Successfully retrieved case details
Show child attributes