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>7cc1d201-f7fd-4350-85d3-ef9a9b269cd2</DocumentPageID> <DocumentPageID>2fa76f0a-ee76-49e1-ae35-bf0a5f88cba9</DocumentPageID> <OwnerID>d6f4d6fb-c67c-430f-b8a4-75387ef4020f</OwnerID> <AccountID>3be0cd5d-80aa-4310-9466-bb8b85880185</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"7cc1d201-f7fd-4350-85d3-ef9a9b269cd2",
"2fa76f0a-ee76-49e1-ae35-bf0a5f88cba9"
],
"OwnerID": "d6f4d6fb-c67c-430f-b8a4-75387ef4020f",
"AccountID": "3be0cd5d-80aa-4310-9466-bb8b85880185"
}
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>c416a9a7-47cd-4525-b4e6-e493c87f30b6</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "c416a9a7-47cd-4525-b4e6-e493c87f30b6"
}