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>9a29ca30-bbd0-475c-8b11-6054929a814a</DocumentPageID> <DocumentPageID>6a6de93e-5230-4e6c-a1b7-159328d99c18</DocumentPageID> <OwnerID>dd146ab3-5434-4e09-ae3d-2ad1fdaa8a31</OwnerID> <AccountID>9b3d695c-279e-4a4b-88e3-7b742c0648ee</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"9a29ca30-bbd0-475c-8b11-6054929a814a",
"6a6de93e-5230-4e6c-a1b7-159328d99c18"
],
"OwnerID": "dd146ab3-5434-4e09-ae3d-2ad1fdaa8a31",
"AccountID": "9b3d695c-279e-4a4b-88e3-7b742c0648ee"
}
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>5ab15dea-5efb-4242-a473-a6a88f967b6c</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "5ab15dea-5efb-4242-a473-a6a88f967b6c"
}