POST api_v1/RecognitionPackages/CreatePackageFromDocumentPages

Создание пакета на основании страниц распознанного документа (прим. учитывается последовательность)

Request Information

Body Parameters

CreatePackageFromDocumentPagesModel
NameDescriptionTypeAdditional information
DocumentPageID

Collection of globally unique identifier

None.

OwnerID

globally unique identifier

None.

AccountID

globally unique identifier

None.

Request Formats

application/xml, text/xml

Sample:
<Request>
  <DocumentPageID>35817d10-4b98-4b17-b74f-3e29b1ffd630</DocumentPageID>
  <DocumentPageID>d504cdbc-3117-4946-805f-1e9c0bb8f420</DocumentPageID>
  <OwnerID>851f0ba8-a445-4ce6-a818-1a7a09f1c0f1</OwnerID>
  <AccountID>f73a6f3f-0e9e-4d28-8b6c-713a17e7b8fb</AccountID>
</Request>

application/json, text/json

Sample:
{
  "DocumentPageID": [
    "35817d10-4b98-4b17-b74f-3e29b1ffd630",
    "d504cdbc-3117-4946-805f-1e9c0bb8f420"
  ],
  "OwnerID": "851f0ba8-a445-4ce6-a818-1a7a09f1c0f1",
  "AccountID": "f73a6f3f-0e9e-4d28-8b6c-713a17e7b8fb"
}

Response Information

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

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

Resource Description

RecognitionPackageIdDTO
NameDescriptionTypeAdditional information
RecognitionPackageId

globally unique identifier

None.

Response Formats

application/xml, text/xml

Sample:
<Result>
  <RecognitionPackageId>bc392a69-acb6-4bbc-8447-c5d3cbf4c57b</RecognitionPackageId>
</Result>

application/json, text/json

Sample:
{
  "RecognitionPackageId": "bc392a69-acb6-4bbc-8447-c5d3cbf4c57b"
}