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>d4c9f3a3-f194-42dd-8583-95676b57b7d9</DocumentPageID> <DocumentPageID>2bd600e4-d85d-48e0-9ff6-8e61f27706a1</DocumentPageID> <OwnerID>8cdf82bc-0b25-4012-8df6-919347925bb6</OwnerID> <AccountID>3f7b4f24-6579-43b1-8d28-0160b2da2ed7</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"d4c9f3a3-f194-42dd-8583-95676b57b7d9",
"2bd600e4-d85d-48e0-9ff6-8e61f27706a1"
],
"OwnerID": "8cdf82bc-0b25-4012-8df6-919347925bb6",
"AccountID": "3f7b4f24-6579-43b1-8d28-0160b2da2ed7"
}
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>e0fefbcf-7461-4c69-9584-c9375c9830de</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "e0fefbcf-7461-4c69-9584-c9375c9830de"
}