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>062e30fc-99dc-42e2-9097-aa18fe17ce73</DocumentPageID> <DocumentPageID>b1b0733d-49e5-4605-9488-7eb0ef19adc8</DocumentPageID> <OwnerID>8f6d439b-8be9-4287-b886-37c0aa7a5538</OwnerID> <AccountID>fa08b6cb-3bdd-46a3-9d49-39322e07a390</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"062e30fc-99dc-42e2-9097-aa18fe17ce73",
"b1b0733d-49e5-4605-9488-7eb0ef19adc8"
],
"OwnerID": "8f6d439b-8be9-4287-b886-37c0aa7a5538",
"AccountID": "fa08b6cb-3bdd-46a3-9d49-39322e07a390"
}
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>87d85580-b84f-4ba4-b633-93846fd077e8</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "87d85580-b84f-4ba4-b633-93846fd077e8"
}