POST api_v1/RecognitionPackages/CreatePackageFromDocumentPages
Создание пакета на основании страниц распознанного документа (прим. учитывается последовательность)
Request Information
Body Parameters
CreatePackageFromDocumentPagesModel| Name | Description | Type | Additional 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>dee223c7-5aa1-4e95-ae0e-22a357f68600</DocumentPageID> <DocumentPageID>8c0ab59f-b1b5-45c4-9efb-da2172540f55</DocumentPageID> <OwnerID>2e76c258-a9f1-4568-a9e8-37808c1c993b</OwnerID> <AccountID>b8962842-030b-486b-b8aa-558f0333bd2d</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"dee223c7-5aa1-4e95-ae0e-22a357f68600",
"8c0ab59f-b1b5-45c4-9efb-da2172540f55"
],
"OwnerID": "2e76c258-a9f1-4568-a9e8-37808c1c993b",
"AccountID": "b8962842-030b-486b-b8aa-558f0333bd2d"
}
Response Information
output может быть предоставлен в одном из следующих форматов:
- json – задает вывод в формате JavaScript Object Notation (JSON)
- xml – задает вывод в формате XML
Resource Description
RecognitionPackageIdDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| RecognitionPackageId | globally unique identifier |
None. |
Response Formats
application/xml, text/xml
Sample:
<Result> <RecognitionPackageId>b955e31d-c225-48c1-8425-310ad43b9a0b</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "b955e31d-c225-48c1-8425-310ad43b9a0b"
}