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
NameDescriptionTypeAdditional 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>3a37f255-f319-444a-be67-ede317a640c1</Id>
  <RecognitionPackageId>c46f59ea-5b8d-4668-a5aa-ff174df42675</RecognitionPackageId>
  <LocalPath>sample string 3</LocalPath>
  <Status>Ready</Status>
  <Comment>sample string 4</Comment>
</Result>

application/json, text/json

Sample:
{
  "Id": "3a37f255-f319-444a-be67-ede317a640c1",
  "RecognitionPackageId": "c46f59ea-5b8d-4668-a5aa-ff174df42675",
  "LocalPath": "sample string 3",
  "Status": 1,
  "Comment": "sample string 4"
}