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>440fe6b6-10f6-4c2c-a3ab-1d57afac12a1</Id> <RecognitionPackageId>1a9b60ec-26a9-4b4c-b9c8-9f099d8f5b33</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": "440fe6b6-10f6-4c2c-a3ab-1d57afac12a1",
"RecognitionPackageId": "1a9b60ec-26a9-4b4c-b9c8-9f099d8f5b33",
"OriginalName": "sample string 3",
"Status": 1,
"Type": "sample string 4",
"Source": "sample string 5",
"Comment": "sample string 6",
"PageCount": 7
}