GET api_v1/ResultFiles/GetFileProperties?resultFileId={resultFileId}
Запрос полного списка параметров результирующего файла.
Request Information
Body Parameters
None.
Response Information
output может быть предоставлен в одном из следующих форматов:
- json – задает вывод в формате JavaScript Object Notation (JSON)
- xml – задает вывод в формате XML
Resource Description
ResultFilePropertiesDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| RecognitionPackageId | globally unique identifier |
None. |
|
| LocalPath | string |
None. |
|
| Status | SfStatus |
None. |
|
| Comment | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<Result> <Id>d9325a4b-636f-44cb-bec6-b11ac35aa560</Id> <RecognitionPackageId>d155a36c-2b0e-45d1-b88f-75b9777e937d</RecognitionPackageId> <LocalPath>sample string 3</LocalPath> <Status>Ready</Status> <Comment>sample string 4</Comment> </Result>
application/json, text/json
Sample:
{
"Id": "d9325a4b-636f-44cb-bec6-b11ac35aa560",
"RecognitionPackageId": "d155a36c-2b0e-45d1-b88f-75b9777e937d",
"LocalPath": "sample string 3",
"Status": 1,
"Comment": "sample string 4"
}