GET api_v1/SourceFiles/GetFileProperties?sourceFileId={sourceFileId}
Запрос полного списка параметров исходного файла
Request Information
Body Parameters
None.
Response Information
output может быть предоставлен в одном из следующих форматов:
- json – задает вывод в формате JavaScript Object Notation (JSON)
- xml – задает вывод в формате XML
Resource Description
SourceFilePropertiesDTOName | 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>53dabd98-f2ee-4dfc-bb89-b99a53fc0f85</Id> <RecognitionPackageId>38c20b54-88ba-4ad4-9c84-c799be833fb1</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": "53dabd98-f2ee-4dfc-bb89-b99a53fc0f85", "RecognitionPackageId": "38c20b54-88ba-4ad4-9c84-c799be833fb1", "OriginalName": "sample string 3", "Status": 1, "Type": "sample string 4", "Source": "sample string 5", "Comment": "sample string 6", "PageCount": 7 }