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>77875b36-274f-4418-b573-5a67e443a888</DocumentPageID> <DocumentPageID>21ae8e65-1d9f-45c6-b545-d939dbe0cca3</DocumentPageID> <OwnerID>de5fc74e-5426-4874-b7e8-fe1c5c1108b3</OwnerID> <AccountID>15a00c77-3a5d-4e56-9dcb-2545696e042b</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"77875b36-274f-4418-b573-5a67e443a888",
"21ae8e65-1d9f-45c6-b545-d939dbe0cca3"
],
"OwnerID": "de5fc74e-5426-4874-b7e8-fe1c5c1108b3",
"AccountID": "15a00c77-3a5d-4e56-9dcb-2545696e042b"
}
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>56359895-13e6-4b28-b072-9004a913139e</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "56359895-13e6-4b28-b072-9004a913139e"
}