curl --request POST \
--url https://cases.platform.arb.inc/tasks/list \
--header 'Authorization: Bearer <token>'{
"tasks": [
{
"caseID": "2025-09-00123",
"filings": [
{
"documentID": "statementOfClaim",
"displayName": "Statement of Claim",
"required": true,
"recommended": false,
"completed": false
},
{
"documentID": "witnessList",
"displayName": "Witness List",
"required": false,
"recommended": true,
"completed": true
}
],
"approvals": [
{
"filingID": "filing-7f4b9c2a",
"documentID": "statementOfClaim",
"displayName": "Statement of Claim",
"partyID": "respondent"
}
]
},
{
"caseID": "2025-09-00456",
"filings": [],
"approvals": [
{
"filingID": "filing-a13e88de",
"documentID": "evidenceSubmission",
"displayName": "Evidence Submission",
"partyID": "claimant"
}
]
}
]
}Gets the user’s tasks for all cases they are part of.
curl --request POST \
--url https://cases.platform.arb.inc/tasks/list \
--header 'Authorization: Bearer <token>'{
"tasks": [
{
"caseID": "2025-09-00123",
"filings": [
{
"documentID": "statementOfClaim",
"displayName": "Statement of Claim",
"required": true,
"recommended": false,
"completed": false
},
{
"documentID": "witnessList",
"displayName": "Witness List",
"required": false,
"recommended": true,
"completed": true
}
],
"approvals": [
{
"filingID": "filing-7f4b9c2a",
"documentID": "statementOfClaim",
"displayName": "Statement of Claim",
"partyID": "respondent"
}
]
},
{
"caseID": "2025-09-00456",
"filings": [],
"approvals": [
{
"filingID": "filing-a13e88de",
"documentID": "evidenceSubmission",
"displayName": "Evidence Submission",
"partyID": "claimant"
}
]
}
]
}access token
Tasks successfully retrieved.
Tasks grouped by case.
Show child attributes
Unique ID of the case.
36"2025-09-00123"
Documents the user may need to file.
Show child attributes
Unique ID for the document type.
"statementOfClaim"
Human-friendly document name.
"Statement of Claim"
True if the document is required now.
true
True if not required, but strongly encouraged to be filed.
true
True if the user already finished it.
false
Filings the user must approve.
Show child attributes
Unique ID of the filing awaiting approval.
"filing-7f4b9c2a"
Unique ID for the filing's document type.
"statementOfClaim"
Human-friendly name of the filing.
"Statement of Claim"
Party that filed the document.
"claimant"