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>edfaf242-33a9-462a-85ee-8280cd18c1ff</DocumentPageID> <DocumentPageID>f53a000d-db1d-4713-ab51-ee9d3d672b75</DocumentPageID> <OwnerID>07304398-9a78-4da5-8654-e386be639503</OwnerID> <AccountID>3a4e6e95-3350-4afa-a381-ff1b15578bdd</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"edfaf242-33a9-462a-85ee-8280cd18c1ff",
"f53a000d-db1d-4713-ab51-ee9d3d672b75"
],
"OwnerID": "07304398-9a78-4da5-8654-e386be639503",
"AccountID": "3a4e6e95-3350-4afa-a381-ff1b15578bdd"
}
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>a9c3a388-6bee-4122-8178-b5a550ad23bf</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "a9c3a388-6bee-4122-8178-b5a550ad23bf"
}