curl --request POST \
--url https://cases.platform.arb.inc/timetables/view \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caseID": "2025-10-00123"
}
'{
"previousPhases": [
{
"id": "caseInitiation",
"scheduledStart": "2025-09-01T09:00:00Z",
"scheduledEnd": "2025-09-05T17:00:00Z",
"filingDeadline": "2025-09-05T17:00:00Z",
"allowEvidenceSubmission": false,
"documents": [
{
"id": "statementOfClaim",
"filedBy": "claimant",
"approvedBy": "caseManager",
"maxAllowed": 1,
"required": true,
"recommended": false
}
]
}
],
"currentPhase": {
"id": "caseFiling",
"scheduledStart": "2025-09-06T09:00:00Z",
"scheduledEnd": null,
"filingDeadline": "2025-10-10T23:59:59Z",
"allowEvidenceSubmission": true,
"documents": [
{
"id": "statementOfClaim",
"filedBy": "claimant",
"approvedBy": "arbitrator",
"maxAllowed": 1,
"required": true,
"recommended": false
}
]
},
"nextPhases": [
{
"id": "preHearing",
"scheduledStart": "2025-10-15T09:00:00Z",
"scheduledEnd": "2025-10-20T17:00:00Z",
"filingDeadline": "2025-10-18T23:59:59Z",
"allowEvidenceSubmission": true,
"documents": [
{
"id": "witnessList",
"filedBy": "claimant",
"approvedBy": null,
"maxAllowed": 1,
"required": false,
"recommended": true
}
]
}
]
}Returns the case’s phases split into previous, current, and next.
curl --request POST \
--url https://cases.platform.arb.inc/timetables/view \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caseID": "2025-10-00123"
}
'{
"previousPhases": [
{
"id": "caseInitiation",
"scheduledStart": "2025-09-01T09:00:00Z",
"scheduledEnd": "2025-09-05T17:00:00Z",
"filingDeadline": "2025-09-05T17:00:00Z",
"allowEvidenceSubmission": false,
"documents": [
{
"id": "statementOfClaim",
"filedBy": "claimant",
"approvedBy": "caseManager",
"maxAllowed": 1,
"required": true,
"recommended": false
}
]
}
],
"currentPhase": {
"id": "caseFiling",
"scheduledStart": "2025-09-06T09:00:00Z",
"scheduledEnd": null,
"filingDeadline": "2025-10-10T23:59:59Z",
"allowEvidenceSubmission": true,
"documents": [
{
"id": "statementOfClaim",
"filedBy": "claimant",
"approvedBy": "arbitrator",
"maxAllowed": 1,
"required": true,
"recommended": false
}
]
},
"nextPhases": [
{
"id": "preHearing",
"scheduledStart": "2025-10-15T09:00:00Z",
"scheduledEnd": "2025-10-20T17:00:00Z",
"filingDeadline": "2025-10-18T23:59:59Z",
"allowEvidenceSubmission": true,
"documents": [
{
"id": "witnessList",
"filedBy": "claimant",
"approvedBy": null,
"maxAllowed": 1,
"required": false,
"recommended": true
}
]
}
]
}access token
Case identifier.
"2025-10-00123"
Timetable fetched.
Phases that finished before the current phase.
Show child attributes
"caseInitiation"
"2025-09-01T09:00:00Z"
"2025-09-05T17:00:00Z"
"2025-09-05T17:00:00Z"
false
Show child attributes
"statementOfClaim"
"claimant"
"caseManager"
1
true
false
The phase the case is currently in.
Show child attributes
"caseFiling"
"2025-09-06T09:00:00Z"
null
"2025-10-10T23:59:59Z"
true
Show child attributes
"statementOfClaim"
"claimant"
"arbitrator"
1
true
false
Phases scheduled after the current phase.
Show child attributes
"preHearing"
"2025-10-15T09:00:00Z"
"2025-10-20T17:00:00Z"
"2025-10-18T23:59:59Z"
true
Show child attributes
"witnessList"
"claimant"
null
1
false
true