GET PlanCare2Api/Reports/Pdf?reportLocation={reportLocation}&clientId={clientId}
Gets an exported report (PDF)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportLocation |
The guid of the report on location to generate |
globally unique identifier |
Required |
| clientId |
The clientId to generate the report for |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The generated report
Report| Name | Description | Type | Additional information |
|---|---|---|---|
| Title |
The title of the report |
string |
Required |
| Content |
A byte array which represents the content of an exported report |
Collection of byte |
Required |
| FileName |
The file name of the report |
string |
Required |
| Description |
The description name of the report |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Title": "sample string 1",
"Content": "QEA=",
"FileName": "sample string 2",
"Description": "sample string 3"
}
application/xml, text/xml
Sample:
<Report xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface"> <Content>QEA=</Content> <Description>sample string 3</Description> <FileName>sample string 2</FileName> <Title>sample string 1</Title> </Report>