POST api/Reports/ZIMDIS/GetReport
Request Information
URI Parameters
None.
Body Parameters
ReportDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportName | string |
None. |
|
| ReportPath | string |
None. |
|
| Doctype | string |
None. |
|
| Parameters | string |
None. |
|
| ExportFilename | string |
None. |
|
| Format | string |
Required |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| MemberId | integer |
None. |
|
| SearchTerm | 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",
"Format": "sample string 6",
"StartDate": "2026-04-14T19:30:21.9175178-07:00",
"EndDate": "2026-04-14T19:30:21.9175178-07:00",
"MemberId": 1,
"SearchTerm": "sample string 7",
"ReportParameters": [
{
"Key": "sample string 1",
"Value": {}
},
{
"Key": "sample string 1",
"Value": {}
}
]
}
application/xml, text/xml
Sample:
<ReportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrystalReportingApi.DTOs">
<Doctype>sample string 3</Doctype>
<EndDate>2026-04-14T19:30:21.9175178-07:00</EndDate>
<ExportFilename>sample string 5</ExportFilename>
<Format>sample string 6</Format>
<MemberId>1</MemberId>
<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>
<SearchTerm>sample string 7</SearchTerm>
<StartDate>2026-04-14T19:30:21.9175178-07:00</StartDate>
</ReportDto>
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. |