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>42c89887-169b-495a-878b-0ca8661ab1e9</DocumentPageID> <DocumentPageID>ad65a2fd-b4a6-42ed-b46e-3b57fa499b66</DocumentPageID> <OwnerID>b26dd836-3424-4d31-9089-35c54a032f3b</OwnerID> <AccountID>5214fae1-ef78-42f2-b1c1-779cae3f9643</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"42c89887-169b-495a-878b-0ca8661ab1e9",
"ad65a2fd-b4a6-42ed-b46e-3b57fa499b66"
],
"OwnerID": "b26dd836-3424-4d31-9089-35c54a032f3b",
"AccountID": "5214fae1-ef78-42f2-b1c1-779cae3f9643"
}
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>fe18b279-b746-4910-ac51-be1e456972dc</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "fe18b279-b746-4910-ac51-be1e456972dc"
}