POST api/files/document/download

Request Information

URI Parameters

None.

Body Parameters

Collection of FileDownloadModel
NameDescriptionTypeAdditional information
file_path

string

Required

file_name

string

Required

base_path_id

integer

Required

Request Formats

application/json, text/json

Sample:
[
  {
    "file_path": "sample string 1",
    "file_name": "sample string 2",
    "base_path_id": 3
  },
  {
    "file_path": "sample string 1",
    "file_name": "sample string 2",
    "base_path_id": 3
  }
]

text/html

Sample:
[{"file_path":"sample string 1","file_name":"sample string 2","base_path_id":3},{"file_path":"sample string 1","file_name":"sample string 2","base_path_id":3}]

application/xml, text/xml

Sample:
<ArrayOfFileDownloadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models">
  <FileDownloadModel>
    <base_path_id>3</base_path_id>
    <file_name>sample string 2</file_name>
    <file_path>sample string 1</file_path>
  </FileDownloadModel>
  <FileDownloadModel>
    <base_path_id>3</base_path_id>
    <file_name>sample string 2</file_name>
    <file_path>sample string 1</file_path>
  </FileDownloadModel>
</ArrayOfFileDownloadModel>

multipart/form-data

Sample:
<ArrayOfFileDownloadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSAtlas_WebAPI.Models"><FileDownloadModel><base_path_id>3</base_path_id><file_name>sample string 2</file_name><file_path>sample string 1</file_path></FileDownloadModel><FileDownloadModel><base_path_id>3</base_path_id><file_name>sample string 2</file_name><file_path>sample string 1</file_path></FileDownloadModel></ArrayOfFileDownloadModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of HttpContent
NameDescriptionTypeAdditional information
Headers

Collection of Object

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml, multipart/form-data

Sample:

Sample not available.