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>851bedf2-1bcb-41f4-babc-bda467e25bfd</DocumentPageID> <DocumentPageID>ae091a80-e8d4-4a17-85ec-101286cd611a</DocumentPageID> <OwnerID>16a48985-ba1c-406d-9a40-45335163a1ed</OwnerID> <AccountID>e5472c10-7768-4f96-81c1-7169c34cd59e</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"851bedf2-1bcb-41f4-babc-bda467e25bfd",
"ae091a80-e8d4-4a17-85ec-101286cd611a"
],
"OwnerID": "16a48985-ba1c-406d-9a40-45335163a1ed",
"AccountID": "e5472c10-7768-4f96-81c1-7169c34cd59e"
}
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>dfe9746e-1c4e-400e-b86e-bf7587799b19</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "dfe9746e-1c4e-400e-b86e-bf7587799b19"
}