GET
/
v1
/
documents
/
{documentId}
/
status
Get document processing status
curl --request GET \
  --url http://localhost/v1/documents/{documentId}/status \
  --header 'X-API-Key: <api-key>'
{
  "documentId": "<string>",
  "fileName": "<string>",
  "status": "<string>",
  "progressPercentage": 123,
  "totalItems": 123,
  "completedItems": 123,
  "failedItems": 123,
  "pageCount": 123,
  "childDocuments": [
    {
      "displayName": "<string>",
      "fileName": "<string>",
      "pageCount": 123
    }
  ],
  "resultSummary": {
    "averageScore": 123,
    "passedCount": 123,
    "failedCount": 123,
    "warningCount": 123
  },
  "errorMessage": "<string>",
  "processedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-Key
string
header
required

API Key provided by Eve Admin Portal. Include this header in all authenticated requests.

Path Parameters

documentId
string
required

Response

documentId
string
fileName
string
status
string
progressPercentage
number<double>
totalItems
integer<int32>
completedItems
integer<int32>
failedItems
integer<int32>
pageCount
integer<int32>
childDocuments
object[]
resultSummary
object
errorMessage
string | null
processedAt
string<date-time> | null
createdAt
string<date-time>