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>eb5c4bde-a06c-4fd8-98d9-7c58fc4666b0</DocumentPageID> <DocumentPageID>cbceac26-1eb7-4425-a9e1-5ecf63f5c80e</DocumentPageID> <OwnerID>af98140a-1103-464a-b61d-d553618ea2da</OwnerID> <AccountID>c7a794f5-218b-4d75-a581-6bb759c92e90</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"eb5c4bde-a06c-4fd8-98d9-7c58fc4666b0",
"cbceac26-1eb7-4425-a9e1-5ecf63f5c80e"
],
"OwnerID": "af98140a-1103-464a-b61d-d553618ea2da",
"AccountID": "c7a794f5-218b-4d75-a581-6bb759c92e90"
}
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>c8307112-794b-4f16-a705-b00a2303462d</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "c8307112-794b-4f16-a705-b00a2303462d"
}