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>eb4d0e7c-439f-40f5-a81e-cc054cb5ef4f</DocumentPageID> <DocumentPageID>a3bb4a7e-233b-44e3-bcdf-f85890caa2bc</DocumentPageID> <OwnerID>eed388ba-1e53-4002-909f-a739bdab5caf</OwnerID> <AccountID>f35547bb-9a54-424b-9fba-9b1316dcc906</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"eb4d0e7c-439f-40f5-a81e-cc054cb5ef4f",
"a3bb4a7e-233b-44e3-bcdf-f85890caa2bc"
],
"OwnerID": "eed388ba-1e53-4002-909f-a739bdab5caf",
"AccountID": "f35547bb-9a54-424b-9fba-9b1316dcc906"
}
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>6db213c1-8873-490f-be8c-de5a0e774dba</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "6db213c1-8873-490f-be8c-de5a0e774dba"
}