curl --request POST \
--url https://cases.platform.arb.inc/docket/entries/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caseID": "2025-08-00125"
}
'{
"entries": [
{
"entryID": "52",
"enteredAt": "2025-08-01T14:23:45Z",
"userID": "a2c4b6d8-1122-3344-5566-77889900aa11",
"organizationID": "51d3c8c2-9c0a-4a2e-8a9b-3e2f1d0c7b6a",
"phaseID": "caseInitiation",
"documentID": "statementOfClaim",
"partyID": "claimant",
"filingID": "25",
"title": "Statement of Claim Filed"
},
{
"entryID": "55",
"enteredAt": "2025-08-03T10:05:12Z",
"userID": "c3d5e7f9-0011-2233-4455-66778899aabb",
"organizationID": null,
"phaseID": "caseInitiation",
"documentID": "noticeOfArbitration",
"partyID": "caseManager",
"filingID": "91",
"title": "Notice of Arbitration",
"supersedes": "12"
}
]
}Gets a list of entries in a cases docket.
curl --request POST \
--url https://cases.platform.arb.inc/docket/entries/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caseID": "2025-08-00125"
}
'{
"entries": [
{
"entryID": "52",
"enteredAt": "2025-08-01T14:23:45Z",
"userID": "a2c4b6d8-1122-3344-5566-77889900aa11",
"organizationID": "51d3c8c2-9c0a-4a2e-8a9b-3e2f1d0c7b6a",
"phaseID": "caseInitiation",
"documentID": "statementOfClaim",
"partyID": "claimant",
"filingID": "25",
"title": "Statement of Claim Filed"
},
{
"entryID": "55",
"enteredAt": "2025-08-03T10:05:12Z",
"userID": "c3d5e7f9-0011-2233-4455-66778899aabb",
"organizationID": null,
"phaseID": "caseInitiation",
"documentID": "noticeOfArbitration",
"partyID": "caseManager",
"filingID": "91",
"title": "Notice of Arbitration",
"supersedes": "12"
}
]
}access token
The case identifier to list entries for. Max length 36.
"2025-08-00125"
Docket entries successfully retrieved.
The docket entries for the case.
Show child attributes
ID for this docket entry (unique within the case).
"52"
When the entry was officially filed.
"2025-08-01T14:23:45Z"
User ID of the participant who authored the entry.
"a2c4b6d8-1122-3344-5566-77889900aa11"
Organization ID of the user, or null for personal accounts.
"51d3c8c2-9c0a-4a2e-8a9b-3e2f1d0c7b6a"
Case phase at the time of filing.
"caseInitiation"
Type ID of the document filed.
"statementOfClaim"
Role of the participant (e.g., claimant, respondent).
"claimant"
ID of the filed document.
"42"
Short title or description of the entry.
"Statement of Claim Filed"
Optional docket number this filing supersedes.
"12"