Skip to main content
POST
/
filings
/
documents
/
update
Update a filed document
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-00125",
  "filingID": "14",
  "fields": {
    "title": "Amended Motion to Dismiss",
    "description": "Updated summary after review",
    "docketNumber": "2025-00123"
  }
}
'
"Document successfully updated"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The case ID the document belongs to.

Example:

"2025-08-00125"

filingID
string
required

The filing ID of the document to update.

Example:

"14"

fields
object
required

Key-value fields to update on the document.

Example:
{
"title": "Amended Motion to Dismiss",
"description": "Updated summary after review",
"docketNumber": "2025-00123"
}

Response

Document successfully updated.

The response is of type string.

Example:

"Document successfully updated"