PUT api/reports/pdfprinter
Request Information
URI Parameters
None.
Body Parameters
PdfOptions| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string |
None. |
|
| Html | string |
None. |
|
| AsAttachment | boolean |
None. |
|
| ResizeBootstrapColumns | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"FileName": "sample string 1",
"Html": "sample string 2",
"AsAttachment": true,
"ResizeBootstrapColumns": true
}
application/xml, text/xml
Sample:
<ReportsController.PdfOptions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XCapture.API.Controllers"> <AsAttachment>true</AsAttachment> <FileName>sample string 1</FileName> <Html>sample string 2</Html> <ResizeBootstrapColumns>true</ResizeBootstrapColumns> </ReportsController.PdfOptions>
application/x-www-form-urlencoded
Sample:
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. |