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>e69e365d-7cec-48fc-9b0c-afe0e0e78fd4</Id> <RecognitionPackageId>db0f0091-ed53-4e0a-b4aa-9eca8ab48649</RecognitionPackageId> <LocalPath>sample string 3</LocalPath> <Status>Ready</Status> <Comment>sample string 4</Comment> </Result>
application/json, text/json
Sample:
{
"Id": "e69e365d-7cec-48fc-9b0c-afe0e0e78fd4",
"RecognitionPackageId": "db0f0091-ed53-4e0a-b4aa-9eca8ab48649",
"LocalPath": "sample string 3",
"Status": 1,
"Comment": "sample string 4"
}