Skip to main content
POST
/
filings
/
documents
/
pending-approval
Get documents waiting for approval
curl --request POST \
  --url https://cases.platform.arb.inc/filings/documents/pending-approval \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00123"
}
'
{
  "documents": [
    {
      "created": "2025-08-01T14:23:45Z",
      "updated": "2025-08-10T09:12:30Z",
      "filingID": "4",
      "phaseID": "caseInitiation",
      "documentID": "statementOfClaim",
      "userID": "ac4a1ff3-2834-422f-9286-f8e8e5d0ca5b",
      "organizationID": "928c4307-9982-4cf7-a726-791e83a043f0"
    },
    {
      "created": "2025-08-05T11:00:00Z",
      "updated": "2025-08-08T16:45:10Z",
      "filingID": "4",
      "phaseID": "caseInitiation",
      "documentID": "statementOfClaim",
      "userID": "ac4a1ff3-2834-422f-9286-f8e8e5d0ca5b",
      "organizationID": null
    }
  ]
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Case identifier to look up.

Maximum string length: 36
Example:

"2025-08-00123"

Response

Documents pending approval were found.

documents
object[]

List of documents pending approval for the caller.