Skip to main content
POST
/
filings
/
documents
/
update
Update document filing
curl --request POST \
  --url https://cases.platform.arb.inc/filings/documents/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292",
  "filingID": "2720f109-0caf-4c62-af22-5d08c853711c",
  "fields": {
    "claimantName": "John Smith",
    "respondentName": "Jane Doe"
  }
}
'
"Document filing updated successfully"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required
Example:

"2025-08-00292"

filingID
string<uuid>
required
Example:

"2720f109-0caf-4c62-af22-5d08c853711c"

fields
object
required
Example:
{
"claimantName": "John Smith",
"respondentName": "Jane Doe"
}

Response

200 - text/plain

Successfully updated document filing

The response is of type string.

Example:

"Document filing updated successfully"