GET api_v1/RecognizedDocuments/GetDocumentProperties?recognizedDocumentId={recognizedDocumentId}

Запрос полного списка параметров распознанного документа

Request Information

Body Parameters

None.

Response Information

output может быть предоставлен в одном из следующих форматов:

  • json – задает вывод в формате JavaScript Object Notation (JSON)
  • xml – задает вывод в формате XML

Resource Description

RecognizedDocumentPropertiesDTO
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

RecognitionPackageId

globally unique identifier

None.

Status

DStatus

None.

Type

string

None.

CreateDate

date

None.

EditDate

date

None.

XmlResultFileId

globally unique identifier

None.

PdfResultFileId

globally unique identifier

None.

Comment

string

None.

Response Formats

application/xml, text/xml

Sample:
<Result>
  <Id>bd1f50d1-47e1-4919-b762-c53e05f0e5f3</Id>
  <RecognitionPackageId>b6f52c41-6d91-49c4-be48-2bba1db822d0</RecognitionPackageId>
  <Status>TemplateAssigned</Status>
  <Type>sample string 3</Type>
  <CreateDate>2024-04-27T08:19:56.6271412+03:00</CreateDate>
  <EditDate>2024-04-27T08:19:56.6271412+03:00</EditDate>
  <XmlResultFileId>935f7be8-89a5-4ad2-a0bc-78f972aa6179</XmlResultFileId>
  <PdfResultFileId>586f8809-1d20-4d95-980f-f5e75d09c28c</PdfResultFileId>
  <Comment>sample string 4</Comment>
</Result>

application/json, text/json

Sample:
{
  "Id": "bd1f50d1-47e1-4919-b762-c53e05f0e5f3",
  "RecognitionPackageId": "b6f52c41-6d91-49c4-be48-2bba1db822d0",
  "Status": 0,
  "Type": "sample string 3",
  "CreateDate": "2024-04-27T08:19:56.6271412+03:00",
  "EditDate": "2024-04-27T08:19:56.6271412+03:00",
  "XmlResultFileId": "935f7be8-89a5-4ad2-a0bc-78f972aa6179",
  "PdfResultFileId": "586f8809-1d20-4d95-980f-f5e75d09c28c",
  "Comment": "sample string 4"
}