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>a077e5a5-3cc6-431b-b5f0-e3c1d822a51f</DocumentPageID> <DocumentPageID>d0103ad0-a5e2-42bd-9959-271bd1dc3365</DocumentPageID> <OwnerID>0ed10ece-5dba-48d2-a9d4-58852be0f50c</OwnerID> <AccountID>44a2437b-bf8e-42f4-9bc2-4d61498bfdfe</AccountID> </Request>
application/json, text/json
Sample:
{
"DocumentPageID": [
"a077e5a5-3cc6-431b-b5f0-e3c1d822a51f",
"d0103ad0-a5e2-42bd-9959-271bd1dc3365"
],
"OwnerID": "0ed10ece-5dba-48d2-a9d4-58852be0f50c",
"AccountID": "44a2437b-bf8e-42f4-9bc2-4d61498bfdfe"
}
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>0e614f03-138c-4670-b802-7fc79aad1b65</RecognitionPackageId> </Result>
application/json, text/json
Sample:
{
"RecognitionPackageId": "0e614f03-138c-4670-b802-7fc79aad1b65"
}