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>cb10f979-6a47-4ca0-942c-8e0ddac1bd35</DocumentPageID> <DocumentPageID>c88b5681-0d0b-4460-a90a-ad241fb650c0</DocumentPageID> <OwnerID>6244cb8c-ad51-4977-82dc-794815584818</OwnerID> <AccountID>f90c16d4-cf71-4e3e-9501-a146380cae1f</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"cb10f979-6a47-4ca0-942c-8e0ddac1bd35",
"c88b5681-0d0b-4460-a90a-ad241fb650c0"
],
"OwnerID": "6244cb8c-ad51-4977-82dc-794815584818",
"AccountID": "f90c16d4-cf71-4e3e-9501-a146380cae1f"
}
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>d3114575-d3ef-40b1-92f4-ff416fb2fead</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "d3114575-d3ef-40b1-92f4-ff416fb2fead"
}