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>2a8baf15-0083-494e-8b9d-27369ef549e0</DocumentPageID> <DocumentPageID>24177c13-d9d5-43f0-a6bf-d289790c3ca9</DocumentPageID> <OwnerID>d0f0539a-cb99-4783-8577-8288f172fe53</OwnerID> <AccountID>96970d93-d54e-4c44-918a-756e390f03b3</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"2a8baf15-0083-494e-8b9d-27369ef549e0",
"24177c13-d9d5-43f0-a6bf-d289790c3ca9"
],
"OwnerID": "d0f0539a-cb99-4783-8577-8288f172fe53",
"AccountID": "96970d93-d54e-4c44-918a-756e390f03b3"
}
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>40f92c8d-6b0d-478f-9b05-492d45998e01</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "40f92c8d-6b0d-478f-9b05-492d45998e01"
}