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
NameDescriptionTypeAdditional 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>6ee9a8c6-c566-427b-87d5-f51bcf84fe74</Id>
  <RecognitionPackageId>d7e1d065-8653-4ce8-9a0f-66d2dbdf774f</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": "6ee9a8c6-c566-427b-87d5-f51bcf84fe74",
  "RecognitionPackageId": "d7e1d065-8653-4ce8-9a0f-66d2dbdf774f",
  "OriginalName": "sample string 3",
  "Status": 1,
  "Type": "sample string 4",
  "Source": "sample string 5",
  "Comment": "sample string 6",
  "PageCount": 7
}