cURL
curl --request POST \ --url https://cases.platform.arb.inc/filings/documents/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "caseID": "2025-08-00292", "documentID": "statementOfClaim", "fields": { "claimantName": "John Smith", "respondentName": "Jane Doe" }, "supersedes": "1" } '
{ "filingID": "2720f109-0caf-4c62-af22-5d08c853711c" }
Creates a new document filing for a case. The document is initially in draft status and must be submitted for approval before being added to the docket.
access token
"2025-08-00292"
"statementOfClaim"
Show child attributes
{ "claimantName": "John Smith", "respondentName": "Jane Doe" }
"1"
Successfully created document filing
"2720f109-0caf-4c62-af22-5d08c853711c"