Skip to main content
POST
/
cases
/
list
List user's cases
curl --request POST \
  --url https://cases.platform.arb.inc/cases/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cursor": "2025-08-15T10:30:00.000Z"
}
'
{
  "cases": [
    {
      "overview": {
        "id": "2025-08-00292",
        "created": "2025-08-15T10:30:00.000Z",
        "updated": "2025-08-15T10:30:00.000Z",
        "createdByUserID": "2720f109-0caf-4c62-af22-5d08c853711c",
        "createdByOrgID": "2720f109-0caf-4c62-af22-5d08c853711c",
        "phaseID": "caseInitiation",
        "title": "ARB Case 2025-08-00292",
        "claimantName": "John Smith",
        "respondentName": "Jane Doe",
        "isCaseClosed": false,
        "respondentFeePayerID": "2720f109-0caf-4c62-af22-5d08c853711c"
      },
      "participants": [
        {
          "created": "2025-08-15T10:30:00.000Z",
          "userID": "2720f109-0caf-4c62-af22-5d08c853711c",
          "organizationID": "2720f109-0caf-4c62-af22-5d08c853711c",
          "firstName": "John",
          "lastName": "Smith",
          "partyID": "claimant",
          "isPrimary": true,
          "isObserver": false
        }
      ],
      "partyID": "claimant"
    }
  ],
  "cursor": "2025-08-15T10:30:00.000Z",
  "moreCases": false
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
cursor
string<date-time>

Pagination cursor for fetching next page

Example:

"2025-08-15T10:30:00.000Z"

Response

200 - application/json

Successfully retrieved cases

cases
object[]
cursor
string<date-time>
Example:

"2025-08-15T10:30:00.000Z"

moreCases
boolean
Example:

false