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>1c881c21-871f-45de-b35b-380a6ed9d5ba</Id> <RecognitionPackageId>5e855ac2-3039-4e47-bc93-e3286819d53d</RecognitionPackageId> <LocalPath>sample string 3</LocalPath> <Status>Ready</Status> <Comment>sample string 4</Comment> </Result>
application/json, text/json
Sample:
{
"Id": "1c881c21-871f-45de-b35b-380a6ed9d5ba",
"RecognitionPackageId": "5e855ac2-3039-4e47-bc93-e3286819d53d",
"LocalPath": "sample string 3",
"Status": 1,
"Comment": "sample string 4"
}