POST api/IFMS/ifms/GetReport
Request Information
URI Parameters
None.
Body Parameters
ifmsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportName | string |
None. |
|
| ReportPath | string |
None. |
|
| Doctype | string |
None. |
|
| Parameters | string |
None. |
|
| ExportFilename | string |
None. |
|
| ReportParameters | Collection of Pair of string [key] and Object [value] |
None. |
Request Formats
application/json, text/json
Sample:
{
"ReportName": "sample string 1",
"ReportPath": "sample string 2",
"Doctype": "sample string 3",
"Parameters": "sample string 4",
"ExportFilename": "sample string 5",
"ReportParameters": [
{
"Key": "sample string 1",
"Value": {}
},
{
"Key": "sample string 1",
"Value": {}
}
]
}
application/xml, text/xml
Sample:
<ifmsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrystalReportingApi.DTOs">
<Doctype>sample string 3</Doctype>
<ExportFilename>sample string 5</ExportFilename>
<Parameters>sample string 4</Parameters>
<ReportName>sample string 1</ReportName>
<ReportParameters xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<d2p1:KeyValuePairOfstringanyType>
<d2p1:key>sample string 1</d2p1:key>
<d2p1:value />
</d2p1:KeyValuePairOfstringanyType>
<d2p1:KeyValuePairOfstringanyType>
<d2p1:key>sample string 1</d2p1:key>
<d2p1:value />
</d2p1:KeyValuePairOfstringanyType>
</ReportParameters>
<ReportPath>sample string 2</ReportPath>
</ifmsDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |