GET api/FileHandling/GetFile
Request Information
URI Parameters
None.
Body Parameters
DownLoadFileName | Description | Type | Additional information |
---|---|---|---|
FilePath | string |
None. |
|
FileType | string |
None. |
|
bytes | Collection of byte |
None. |
|
FileName | string |
None. |
|
FileLength | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "FilePath": "sample string 1", "FileType": "sample string 2", "bytes": "QEA=", "FileName": "sample string 3", "FileLength": 4 }
application/xml, text/xml
Sample:
<DownLoadFile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NHAWK_FLEET_API.Controllers"> <FileLength>4</FileLength> <FileName>sample string 3</FileName> <FilePath>sample string 1</FilePath> <FileType>sample string 2</FileType> <bytes>QEA=</bytes> </DownLoadFile>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.