Skip to main content
POST
/
tasks
/
case
/
list
List a user's tasks for a case
curl --request POST \
  --url https://cases.platform.arb.inc/tasks/case/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-09-00123"
}
'
{
"filings": [
{
"documentID": "statementOfClaim",
"displayName": "Statement of Claim",
"required": true,
"completed": false
}
]
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The unique ID of the case.

Maximum string length: 36
Example:

"2025-09-00123"

Response

Tasks successfully retrieved.

filings
object[]

List of filing tasks for this case.

approvals
object[]

Filings the user must approve.