Skip to main content
POST
/
filings
/
documents
/
withdraw
Withdraw a filed document
curl --request POST \
  --url https://cases.platform.arb.inc/filings/documents/withdraw \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00124",
  "filingID": "15"
}
'
"Document successfully withdrawn"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

The case identifier.

Example:

"2025-08-00124"

filingID
string
required

The filed document identifier.

Example:

"15"

Response

Document successfully withdrawn.

The response is of type string.

Example:

"Document successfully withdrawn"