POST api_v1/SourceFiles/UploadFileUsingDirectStream

Запрос добавления файлов в пакет с последующей загрузкой. Файл передается в теле запроса

Request Information

Body Parameters

None.

Response Information

output может быть предоставлен в одном из следующих форматов:

  • json – задает вывод в формате JavaScript Object Notation (JSON)
  • xml – задает вывод в формате XML

Resource Description

Source file Id

SourceFilesListDTO
NameDescriptionTypeAdditional information
SourceFilesList

None.

Response Formats

application/xml, text/xml

Sample:
<Result>
  <SourceFilesList type="sample string 1">
    <SourceFileId>2d9a7cc0-37eb-45f8-8306-8dab6eb051cb</SourceFileId>
    <SourceFileId>5bfd0e53-a4d9-4e05-ae02-20d33c5a16f3</SourceFileId>
  </SourceFilesList>
</Result>

application/json, text/json

Sample:
{
  "SourceFilesList": {
    "List": [
      "2d9a7cc0-37eb-45f8-8306-8dab6eb051cb",
      "5bfd0e53-a4d9-4e05-ae02-20d33c5a16f3"
    ]
  }
}