POST api/DynamicReportGenerator/ExportToExcel

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "ReportId": "sample string 1",
  "ReportName": "sample string 2",
  "ProcedureName": "sample string 3",
  "Filters": [
    {
      "FilterName": "sample string 1",
      "SelectedValue": {},
      "FilterType": "sample string 3"
    },
    {
      "FilterName": "sample string 1",
      "SelectedValue": {},
      "FilterType": "sample string 3"
    },
    {
      "FilterName": "sample string 1",
      "SelectedValue": {},
      "FilterType": "sample string 3"
    }
  ],
  "StartRowIndex": 4,
  "PageSize": 5,
  "SortExpression": "sample string 6"
}

application/xml, text/xml

Sample:
<DynamicReportGeneratorController.ExecuteReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RSSServices.Controllers">
  <Filters>
    <DynamicReportGeneratorController.FilterParameter>
      <FilterName>sample string 1</FilterName>
      <FilterType>sample string 3</FilterType>
      <SelectedValue />
    </DynamicReportGeneratorController.FilterParameter>
    <DynamicReportGeneratorController.FilterParameter>
      <FilterName>sample string 1</FilterName>
      <FilterType>sample string 3</FilterType>
      <SelectedValue />
    </DynamicReportGeneratorController.FilterParameter>
    <DynamicReportGeneratorController.FilterParameter>
      <FilterName>sample string 1</FilterName>
      <FilterType>sample string 3</FilterType>
      <SelectedValue />
    </DynamicReportGeneratorController.FilterParameter>
  </Filters>
  <PageSize>5</PageSize>
  <ProcedureName>sample string 3</ProcedureName>
  <ReportId>sample string 1</ReportId>
  <ReportName>sample string 2</ReportName>
  <SortExpression>sample string 6</SortExpression>
  <StartRowIndex>4</StartRowIndex>
</DynamicReportGeneratorController.ExecuteReportRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.