Skip to main content
POST
/
filings
/
documents
/
approve
Approve a filed document
curl --request POST \
  --url https://cases.platform.arb.inc/filings/documents/approve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00123",
  "filingID": "52"
}
'
"Successfully approved"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Identifier for the case.

Example:

"2025-08-00123"

filingID
string
required

Identifier for the filing to approve.

Example:

"52"

Response

Document was approved.

The response is of type string.

Example:

"Successfully approved"