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>76d51d31-2f22-4739-934d-af404eea1e12</DocumentPageID> <DocumentPageID>b47b5645-a12d-4f19-b739-ba6494b03654</DocumentPageID> <OwnerID>03bad7a4-2cde-4e51-af98-c5dbada167fd</OwnerID> <AccountID>7a86ce77-d8fb-444c-8427-87dd1d9bac75</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"76d51d31-2f22-4739-934d-af404eea1e12",
"b47b5645-a12d-4f19-b739-ba6494b03654"
],
"OwnerID": "03bad7a4-2cde-4e51-af98-c5dbada167fd",
"AccountID": "7a86ce77-d8fb-444c-8427-87dd1d9bac75"
}
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>bcc4d5de-cd37-43b1-90f5-ac50b1412206</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "bcc4d5de-cd37-43b1-90f5-ac50b1412206"
}