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>b6be5aaa-aea3-409b-a46d-c070917a9bae</DocumentPageID> <DocumentPageID>60a07bee-6198-4ed1-b965-7401a29eae40</DocumentPageID> <OwnerID>6758b96d-ec62-4347-9252-77261fe9b09d</OwnerID> <AccountID>3f5d10e6-b539-4f91-8fc2-a2c50255e543</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"b6be5aaa-aea3-409b-a46d-c070917a9bae",
"60a07bee-6198-4ed1-b965-7401a29eae40"
],
"OwnerID": "6758b96d-ec62-4347-9252-77261fe9b09d",
"AccountID": "3f5d10e6-b539-4f91-8fc2-a2c50255e543"
}
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>f6e522f2-d6d5-4358-85ea-8c5670d03699</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "f6e522f2-d6d5-4358-85ea-8c5670d03699"
}