GET api_v1/SourceFiles/GetFileProperties?sourceFileId={sourceFileId}
Запрос полного списка параметров исходного файла
Request Information
Body Parameters
None.
Response Information
output может быть предоставлен в одном из следующих форматов:
- json – задает вывод в формате JavaScript Object Notation (JSON)
- xml – задает вывод в формате XML
Resource Description
SourceFilePropertiesDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| RecognitionPackageId | globally unique identifier |
None. |
|
| OriginalName | string |
None. |
|
| Status | SfStatus |
None. |
|
| Type | string |
None. |
|
| Source | string |
None. |
|
| Comment | string |
None. |
|
| PageCount | integer |
None. |
Response Formats
application/xml, text/xml
Sample:
<Result> <Id>6ed8d500-f5b0-4ffc-af70-7e49b8bfd640</Id> <RecognitionPackageId>64991aae-d70b-47c7-a643-a808204eac7b</RecognitionPackageId> <OriginalName>sample string 3</OriginalName> <Status>Ready</Status> <Type>sample string 4</Type> <Source>sample string 5</Source> <Comment>sample string 6</Comment> <PageCount>7</PageCount> </Result>
application/json, text/json
Sample:
{
"Id": "6ed8d500-f5b0-4ffc-af70-7e49b8bfd640",
"RecognitionPackageId": "64991aae-d70b-47c7-a643-a808204eac7b",
"OriginalName": "sample string 3",
"Status": 1,
"Type": "sample string 4",
"Source": "sample string 5",
"Comment": "sample string 6",
"PageCount": 7
}