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 |
- |
| DisplayTitle |
The display title |
string |
- |
| DisplayDescription |
The display description |
string |
- |
| LocationGuid |
The GUID of the location |
globally unique identifier |
- |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Guid": "524c9195-9f20-4c15-a4df-f4a01bdd2a4e",
"DisplayTitle": "sample string 2",
"DisplayDescription": "sample string 3",
"LocationGuid": "917049d4-3f16-4be8-8e77-295e750bd306"
},
{
"$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>524c9195-9f20-4c15-a4df-f4a01bdd2a4e</Guid>
<LocationGuid>917049d4-3f16-4be8-8e77-295e750bd306</LocationGuid>
</ReportingOnLocation>
<ReportingOnLocation>
<DisplayDescription>sample string 3</DisplayDescription>
<DisplayTitle>sample string 2</DisplayTitle>
<Guid>524c9195-9f20-4c15-a4df-f4a01bdd2a4e</Guid>
<LocationGuid>917049d4-3f16-4be8-8e77-295e750bd306</LocationGuid>
</ReportingOnLocation>
</ArrayOfReportingOnLocation>