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>c40239c2-7987-4dfc-aa56-4a80b8be27ea</DocumentPageID> <DocumentPageID>8c61a71a-bc28-4b92-8375-dcd081e950fc</DocumentPageID> <OwnerID>43e27967-4181-49be-b9ce-b48b1dc13187</OwnerID> <AccountID>86b71739-e3e6-465b-9b07-78d19a8dc5f0</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"c40239c2-7987-4dfc-aa56-4a80b8be27ea",
"8c61a71a-bc28-4b92-8375-dcd081e950fc"
],
"OwnerID": "43e27967-4181-49be-b9ce-b48b1dc13187",
"AccountID": "86b71739-e3e6-465b-9b07-78d19a8dc5f0"
}
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>a5b12176-8e03-4a16-871e-8e0002bf3d69</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "a5b12176-8e03-4a16-871e-8e0002bf3d69"
}