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>1b109625-b42e-4539-84fa-27347a7ce139</DocumentPageID> <DocumentPageID>9cc34bf3-84b3-4626-81f0-ba7ba006ecb4</DocumentPageID> <OwnerID>3fc42d6a-1e9d-42f3-84ed-495bebc6cf0d</OwnerID> <AccountID>0eb1b916-0ef6-4fbe-bd1c-8feb289a3b3b</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"1b109625-b42e-4539-84fa-27347a7ce139",
"9cc34bf3-84b3-4626-81f0-ba7ba006ecb4"
],
"OwnerID": "3fc42d6a-1e9d-42f3-84ed-495bebc6cf0d",
"AccountID": "0eb1b916-0ef6-4fbe-bd1c-8feb289a3b3b"
}
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>4dc7ddf2-7849-4393-97e5-033ea324354e</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "4dc7ddf2-7849-4393-97e5-033ea324354e"
}