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>c4b244fd-72d5-44a1-8f87-d9d2879512b4</DocumentPageID> <DocumentPageID>c5a01f66-7e07-47ce-bb2b-e6ddbf8d2c6e</DocumentPageID> <OwnerID>31ec7cc9-cb5c-4fb2-988a-d11f449a1f68</OwnerID> <AccountID>17712a4b-630d-48f0-987b-84429aa41e57</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"c4b244fd-72d5-44a1-8f87-d9d2879512b4",
"c5a01f66-7e07-47ce-bb2b-e6ddbf8d2c6e"
],
"OwnerID": "31ec7cc9-cb5c-4fb2-988a-d11f449a1f68",
"AccountID": "17712a4b-630d-48f0-987b-84429aa41e57"
}
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>73b2a96f-4396-442d-957e-472b5bfa0d29</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "73b2a96f-4396-442d-957e-472b5bfa0d29"
}