POST api/report/FecthFeeReport

Request Information

URI Parameters

None.

Body Parameters

ReportRequest
NameDescriptionTypeAdditional information
reportname

string

None.

param

Collection of ParametersValue

None.

Request Formats

application/json, text/json

Sample:
{
  "reportname": "sample string 1",
  "param": [
    {
      "Name": "sample string 1",
      "Value": "sample string 2",
      "Label": "sample string 3"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2",
      "Label": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<ReportController.ReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/skoolbaseUtilities.Controllers">
  <param>
    <ReportController.ParametersValue>
      <Label>sample string 3</Label>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </ReportController.ParametersValue>
    <ReportController.ParametersValue>
      <Label>sample string 3</Label>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </ReportController.ParametersValue>
  </param>
  <reportname>sample string 1</reportname>
</ReportController.ReportRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of byte

Response Formats

application/json, text/json

Sample:
"QEA="

application/xml, text/xml

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