curl --request POST \
--url https://cases.platform.arb.inc/timetables/replace \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"caseID": "2025-10-00123",
"summary": "Updating dates after venue change.",
"phases": [
{
"id": "caseInitiation",
"scheduledStart": "2025-11-01T09:00:00Z",
"scheduledEnd": "2025-11-05T17:00:00Z",
"filingDeadline": "2025-10-25T23:59:59Z",
"allowEvidenceSubmission": true,
"documents": [
{
"id": "statementOfClaim",
"filedBy": "claimant",
"approvedBy": "caseManager",
"maxAllowed": 1,
"required": true,
"recommended": false
}
]
},
{
"id": "caseFiling",
"scheduledStart": "2025-12-01T14:00:00Z",
"scheduledEnd": "2025-12-01T16:00:00Z",
"filingDeadline": "2025-11-20T23:59:59Z",
"allowEvidenceSubmission": false,
"documents": [
{
"id": "noticeOfServiceOfProcess",
"filedBy": "caseManager",
"approvedBy": null,
"maxAllowed": 1,
"required": false,
"recommended": true
}
]
}
]
}
'