GET api/application/report

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ServiceResponseOfFileAttachment
NameDescriptionTypeAdditional information
HttpStatusCode

HttpStatusCode

None.

ResponseMessage

string

None.

HasError

boolean

None.

Data

FileAttachment

None.

Response Formats

application/json, text/json

Sample:
{
  "httpStatusCode": 100,
  "responseMessage": "sample string 1",
  "hasError": true,
  "data": {
    "data": "QEA=",
    "name": "sample string 1",
    "type": "sample string 2",
    "length": 3
  }
}

text/html

Sample:
{"httpStatusCode":100,"responseMessage":"sample string 1","hasError":true,"data":{"data":"QEA=","name":"sample string 1","type":"sample string 2","length":3}}

text/xml

Sample:
<ServiceResponseOfFileAttachment_Sj5NPGjk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApplicationPortalAPI.Models">
  <Data>
    <Data>QEA=</Data>
    <Length>3</Length>
    <Name>sample string 1</Name>
    <Type>sample string 2</Type>
  </Data>
  <HasError>true</HasError>
  <HttpStatusCode>Continue</HttpStatusCode>
  <ResponseMessage>sample string 1</ResponseMessage>
</ServiceResponseOfFileAttachment_Sj5NPGjk>