Skip to main content
POST
/
internal
/
case-for-invite
Get case from invite code
curl --request POST \
  --url https://cases.platform.arb.inc/internal/case-for-invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "INVITE123"
}
'
{
  "overview": {
    "id": "<string>",
    "created": "2023-11-07T05:31:56Z",
    "updated": "2023-11-07T05:31:56Z",
    "createdByUserID": "<string>",
    "createdByOrgID": "<string>",
    "phaseID": "<string>",
    "title": "<string>",
    "canSubmitEvidence": true,
    "claimantName": "<string>",
    "respondentName": "<string>",
    "isCaseClosed": true
  },
  "participants": [
    {
      "created": "2023-11-07T05:31:56Z",
      "userID": "<string>",
      "organizationID": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "partyID": "<string>",
      "isPrimary": true,
      "isObserver": true
    }
  ],
  "timetable": {},
  "settlement": {
    "phone": "<string>",
    "email": "<string>",
    "website": "<string>",
    "amount": "<string>",
    "offer": "<string>",
    "validForDays": 123
  }
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
code
string
required

Invite code (1–50 chars).

Required string length: 1 - 50
Example:

"INVITE123"

Response

Case details found.

overview
object

Summary information about the case.

participants
object[]
timetable
object

The timetable object.

settlement
object