POST api/batch_print/queue/history/download

Request Information

URI Parameters

None.

Body Parameters

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
}

text/html

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

application/xml, text/xml

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

multipart/form-data

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

byte

Response Formats

application/json, text/json, text/html

Sample:
64

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

Sample:
<unsignedByte xmlns="http://schemas.microsoft.com/2003/10/Serialization/">64</unsignedByte>