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>8240af65-9ca5-4ebf-b5bb-bddf4ddccca8</DocumentPageID> <DocumentPageID>52f978de-bd7e-49fb-ae31-5d2577dad703</DocumentPageID> <OwnerID>c32b3ae2-2e52-4b03-83dd-7ae3b69cfe58</OwnerID> <AccountID>98241edb-3dcf-4243-9b77-b410da86c77b</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"8240af65-9ca5-4ebf-b5bb-bddf4ddccca8",
"52f978de-bd7e-49fb-ae31-5d2577dad703"
],
"OwnerID": "c32b3ae2-2e52-4b03-83dd-7ae3b69cfe58",
"AccountID": "98241edb-3dcf-4243-9b77-b410da86c77b"
}
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>a8e4da07-f537-42a5-9a46-9c2ad05c7059</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "a8e4da07-f537-42a5-9a46-9c2ad05c7059"
}