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>df7756d5-bb60-4fb7-84d7-57928aa91fa1</DocumentPageID> <DocumentPageID>9a44fae6-ff2a-410c-99df-f4da12648d80</DocumentPageID> <OwnerID>06ae7f32-a5c4-45f2-b0a4-1e8341320f18</OwnerID> <AccountID>f9742e02-a7bc-4c11-9290-79d19f08ff88</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"df7756d5-bb60-4fb7-84d7-57928aa91fa1",
"9a44fae6-ff2a-410c-99df-f4da12648d80"
],
"OwnerID": "06ae7f32-a5c4-45f2-b0a4-1e8341320f18",
"AccountID": "f9742e02-a7bc-4c11-9290-79d19f08ff88"
}
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>1d993261-5aa4-48ad-964a-76b3f7bf3ae6</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "1d993261-5aa4-48ad-964a-76b3f7bf3ae6"
}