Skip to main content
POST
/
filings
/
documents
/
create
Create a document
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-00125",
  "documentID": "statementOfClaim",
  "fields": {
    "respondentName": "Mike Smith",
    "respondentAddress": "123 Main Street"
  }
}
'
{
  "filingID": "3"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

ID of the case to file into.

Example:

"2025-08-00125"

documentID
string
required

Identifier of the document type/template.

Example:

"statementOfClaim"

fields
object

Key-value field inputs for the document.

Example:
{
"respondentName": "Mike Smith",
"respondentAddress": "123 Main Street"
}

Response

Document successfully filed.

filingID
string

ID of the created filing.

Example:

"3"