GET PlanCare2Api/Reports/MetaData?reportLocation={reportLocation}
Gets the available reports for the specified location
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportLocation |
The guid of the report location |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The list of available reports
Collection of ReportingOnLocation| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid |
The internal id |
globally unique identifier |
None |
| DisplayTitle |
The display title |
string |
None |
| DisplayDescription |
The display description |
string |
None |
| LocationGuid |
The GUID of the location |
globally unique identifier |
None |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Guid": "255342aa-bbcc-4d25-89ee-0f1c97823540",
"DisplayTitle": "sample string 2",
"DisplayDescription": "sample string 3",
"LocationGuid": "3f0bdf5a-6bf7-44ce-a924-f1e81984f7ab"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfReportingOnLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
<ReportingOnLocation>
<DisplayDescription>sample string 3</DisplayDescription>
<DisplayTitle>sample string 2</DisplayTitle>
<Guid>255342aa-bbcc-4d25-89ee-0f1c97823540</Guid>
<LocationGuid>3f0bdf5a-6bf7-44ce-a924-f1e81984f7ab</LocationGuid>
</ReportingOnLocation>
<ReportingOnLocation>
<DisplayDescription>sample string 3</DisplayDescription>
<DisplayTitle>sample string 2</DisplayTitle>
<Guid>255342aa-bbcc-4d25-89ee-0f1c97823540</Guid>
<LocationGuid>3f0bdf5a-6bf7-44ce-a924-f1e81984f7ab</LocationGuid>
</ReportingOnLocation>
</ArrayOfReportingOnLocation>