POST api/PostSaveByteTOFile

Request Information

URI Parameters

None.

Body Parameters

ParamData
NameDescriptionTypeAdditional information
FileName

string

None.

MD5

string

None.

DataByte

Collection of byte

None.

IsLastData

boolean

None.

ProcessDataURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FileName": "sample string 1",
  "MD5": "sample string 2",
  "DataByte": "QEA=",
  "IsLastData": true,
  "ProcessDataURL": "sample string 4"
}

application/xml, text/xml

Sample:
<ParamData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EOMModel">
  <DataByte>QEA=</DataByte>
  <FileName>sample string 1</FileName>
  <IsLastData>true</IsLastData>
  <MD5>sample string 2</MD5>
  <ProcessDataURL>sample string 4</ProcessDataURL>
</ParamData>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ParamData'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>