GET api/pmgReport/{id}
Return a single value from the PrintManagerReport table using the primary key as ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The PrintManagerReport Primary Key. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
pmgReportDb| Name | Description | Type | Additional information |
|---|---|---|---|
| ReportID | integer |
None. |
|
| ReportName | string |
Required Max length: 50 |
|
| SSRSName | string |
Required Max length: 50 |
|
| SSRSFolder | string |
Required Max length: 50 |
|
| ReportDescription | string |
Max length: 600 |
|
| PrinterTypeID | integer |
Required |
|
| IsActive | boolean |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"ReportID": 1,
"ReportName": "sample string 2",
"SSRSName": "sample string 3",
"SSRSFolder": "sample string 4",
"ReportDescription": "sample string 5",
"PrinterTypeID": 6,
"IsActive": true
}
application/xml, text/xml
Sample:
<pmgReportDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables"> <results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" /> <IsActive>true</IsActive> <PrinterTypeID>6</PrinterTypeID> <ReportDescription>sample string 5</ReportDescription> <ReportID>1</ReportID> <ReportName>sample string 2</ReportName> <SSRSFolder>sample string 4</SSRSFolder> <SSRSName>sample string 3</SSRSName> </pmgReportDb>