Skip to main content
POST
/
timetables
/
view
View a case timetable
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
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Case identifier.

Example:

"2025-10-00123"

Response

Timetable fetched.

previousPhases
object[]

Phases that finished before the current phase.

currentPhase
object

The phase the case is currently in.

nextPhases
object[]

Phases scheduled after the current phase.