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>3bf8009d-ea34-4eaf-b655-1f05709194f1</DocumentPageID> <DocumentPageID>a345ea50-d45a-405f-a89c-016e32b0648d</DocumentPageID> <OwnerID>9da3d474-3d06-41d3-94b3-7814f994404d</OwnerID> <AccountID>3dcbd467-5975-48a2-a653-cbf9976f608e</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"3bf8009d-ea34-4eaf-b655-1f05709194f1",
"a345ea50-d45a-405f-a89c-016e32b0648d"
],
"OwnerID": "9da3d474-3d06-41d3-94b3-7814f994404d",
"AccountID": "3dcbd467-5975-48a2-a653-cbf9976f608e"
}
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>28e13b68-6b41-4222-a744-a2392d22e043</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "28e13b68-6b41-4222-a744-a2392d22e043"
}