POST api/PrintReport
Request Information
URI Parameters
None.
Body Parameters
Print| Name | Description | Type | Additional information |
|---|---|---|---|
| EntireHtml | string |
None. |
|
| UserID | string |
None. |
|
| PackageName | string |
None. |
|
| ExamDate | string |
None. |
|
| Name | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EntireHtml": "sample string 1",
"UserID": "sample string 2",
"PackageName": "sample string 3",
"ExamDate": "sample string 4",
"Name": "sample string 5"
}
application/xml, text/xml
Sample:
<ValuesController.Print xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuestionPaper.Controllers"> <EntireHtml>sample string 1</EntireHtml> <ExamDate>sample string 4</ExamDate> <Name>sample string 5</Name> <PackageName>sample string 3</PackageName> <UserID>sample string 2</UserID> </ValuesController.Print>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PdfResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Pdfurl | string |
None. |
|
| Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Pdfurl": "sample string 1",
"Status": true
}
application/xml, text/xml
Sample:
<ValuesController.PdfResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuestionPaper.Controllers"> <Pdfurl>sample string 1</Pdfurl> <Status>true</Status> </ValuesController.PdfResponse>