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>164e956e-dc98-480c-a356-395c41ae47cb</DocumentPageID> <DocumentPageID>d1108693-46b3-445d-835a-3cd85f6e39bb</DocumentPageID> <OwnerID>4ce7434c-1e8e-43ff-91b4-b2bac828e7fc</OwnerID> <AccountID>5901cae6-70cc-428b-80fa-758cdec5bcfb</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"164e956e-dc98-480c-a356-395c41ae47cb",
"d1108693-46b3-445d-835a-3cd85f6e39bb"
],
"OwnerID": "4ce7434c-1e8e-43ff-91b4-b2bac828e7fc",
"AccountID": "5901cae6-70cc-428b-80fa-758cdec5bcfb"
}
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>78f4683c-8cc0-4db7-86c0-ce39c08a9aeb</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "78f4683c-8cc0-4db7-86c0-ce39c08a9aeb"
}