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": "19b4ed2b-a040-4a87-baef-916204ae1414",
"DisplayTitle": "sample string 2",
"DisplayDescription": "sample string 3",
"LocationGuid": "191f544d-24a5-4389-87fd-245e70d9713f"
},
{
"$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>19b4ed2b-a040-4a87-baef-916204ae1414</Guid>
<LocationGuid>191f544d-24a5-4389-87fd-245e70d9713f</LocationGuid>
</ReportingOnLocation>
<ReportingOnLocation>
<DisplayDescription>sample string 3</DisplayDescription>
<DisplayTitle>sample string 2</DisplayTitle>
<Guid>19b4ed2b-a040-4a87-baef-916204ae1414</Guid>
<LocationGuid>191f544d-24a5-4389-87fd-245e70d9713f</LocationGuid>
</ReportingOnLocation>
</ArrayOfReportingOnLocation>