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>b1f4e5c6-ef25-4703-8193-07b0bb0f3375</DocumentPageID> <DocumentPageID>deef6a0b-6323-461e-89ce-6795a82e6207</DocumentPageID> <OwnerID>e01fab4a-614f-48e2-a5e5-7634189d76ed</OwnerID> <AccountID>c6838651-3145-4db0-8d3b-3f8161f84e3e</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"b1f4e5c6-ef25-4703-8193-07b0bb0f3375",
"deef6a0b-6323-461e-89ce-6795a82e6207"
],
"OwnerID": "e01fab4a-614f-48e2-a5e5-7634189d76ed",
"AccountID": "c6838651-3145-4db0-8d3b-3f8161f84e3e"
}
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>a49d7007-3401-4855-964f-a28427db3713</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "a49d7007-3401-4855-964f-a28427db3713"
}