curl --request POST \
--url https://api.platform.arb.inc/cases/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "2025-07-15T10:20:30Z"
}
'{
"cases": [
{
"overview": {
"id": "2025-08-00125",
"created": "2025-07-01T09:12:45Z",
"updated": "2025-07-20T14:03:11Z",
"createdByUserID": "2720f109-0caf-4c62-af22-5d08c853711c",
"createdByOrgID": "cfb40d07-6160-4cbc-899e-5541dec01394",
"phaseID": "caseInitiation",
"title": "Case 2025-08-00125",
"claimantName": "Acme Inc",
"respondentName": "Mike Smith"
},
"participants": [
{
"created": "2025-07-02T10:00:00Z",
"userID": "2b7bd450-342a-47c8-8759-9276e5119be4",
"organizationID": "4190c6ca-647d-4d99-b8b3-991b30ebb378",
"firstName": "Owen",
"lastName": "Smith",
"partyID": "claimant",
"isPrimary": true,
"isObserver": false
},
{
"created": "2025-07-02T10:05:00Z",
"userID": "65edccfa-93f6-4dd5-9421-2b3e1ffe856c",
"organizationID": null,
"firstName": "Kyle",
"lastName": "Taskman",
"partyID": "caseManager",
"isPrimary": false,
"isObserver": false
}
],
"partyID": "claimant"
}
],
"cursor": "2025-07-20T14:03:11Z",
"moreCases": true
}Returns the user’s active cases with simple pagination via a cursor.
curl --request POST \
--url https://api.platform.arb.inc/cases/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "2025-07-15T10:20:30Z"
}
'{
"cases": [
{
"overview": {
"id": "2025-08-00125",
"created": "2025-07-01T09:12:45Z",
"updated": "2025-07-20T14:03:11Z",
"createdByUserID": "2720f109-0caf-4c62-af22-5d08c853711c",
"createdByOrgID": "cfb40d07-6160-4cbc-899e-5541dec01394",
"phaseID": "caseInitiation",
"title": "Case 2025-08-00125",
"claimantName": "Acme Inc",
"respondentName": "Mike Smith"
},
"participants": [
{
"created": "2025-07-02T10:00:00Z",
"userID": "2b7bd450-342a-47c8-8759-9276e5119be4",
"organizationID": "4190c6ca-647d-4d99-b8b3-991b30ebb378",
"firstName": "Owen",
"lastName": "Smith",
"partyID": "claimant",
"isPrimary": true,
"isObserver": false
},
{
"created": "2025-07-02T10:05:00Z",
"userID": "65edccfa-93f6-4dd5-9421-2b3e1ffe856c",
"organizationID": null,
"firstName": "Kyle",
"lastName": "Taskman",
"partyID": "caseManager",
"isPrimary": false,
"isObserver": false
}
],
"partyID": "claimant"
}
],
"cursor": "2025-07-20T14:03:11Z",
"moreCases": true
}access token
Return cases created after this timestamp.
"2025-07-15T10:20:30Z"
Cases successfully listed.
List of active cases for the user.
Show child attributes
Summary information about the case.
Show child attributes
Unique identifier for the case.
"2025-08-00125"
When the case was created.
"2025-07-01T09:12:45Z"
When the case was last updated.
"2025-07-20T14:03:11Z"
ID of the user who created the case.
"2720f109-0caf-4c62-af22-5d08c853711c"
Organization ID that created the case, if any.
"cfb40d07-6160-4cbc-899e-5541dec01394"
Current phase identifier.
"caseInitiation"
Human-readable title for the case.
"Case 2025-08-00125"
Name of the claimant (may be null).
"Acme Inc"
Name of the respondent (may be null).
"Mike Smith"
Whether the case is closed or active.
false
People or entities involved in the case.
Show child attributes
When the participant was added.
"2025-07-02T10:00:00Z"
ID of the participant user.
"2b7bd450-342a-47c8-8759-9276e5119be4"
Organization ID tied to the participant.
"4190c6ca-647d-4d99-b8b3-991b30ebb378"
Participants first name.
"Owen"
Optional participants last name.
"Smith"
Participant party role.
"claimant"
Whether this participant is the primary representative.
true
Whether this participant is an observer.
false
Users party in the case.
"claimant"
Cursor for fetching the next page (created time of the last case).
"2025-07-20T14:03:11Z"
Indicates if more cases are available to fetch.
true