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>dc209373-b74a-45a8-8a61-7632892026e2</DocumentPageID> <DocumentPageID>402615d3-f465-49d3-adbc-4ffa13d6bd40</DocumentPageID> <OwnerID>2960d45c-ac2b-49ea-a05c-576f89287602</OwnerID> <AccountID>57e934d3-5e8d-4a5f-ba6b-af2b509e1ff1</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"dc209373-b74a-45a8-8a61-7632892026e2",
"402615d3-f465-49d3-adbc-4ffa13d6bd40"
],
"OwnerID": "2960d45c-ac2b-49ea-a05c-576f89287602",
"AccountID": "57e934d3-5e8d-4a5f-ba6b-af2b509e1ff1"
}
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>dd901e9e-7de6-4165-94e7-366c83e2040a</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "dd901e9e-7de6-4165-94e7-366c83e2040a"
}