GET PlanCare2Api/Reports/Locations
Gets the available report locations
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The list of available report locations
Collection of ReportingLocation| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid |
The unique id (Guid) of the report location |
globally unique identifier |
Required |
| Title |
The title of the reportlocation |
string |
Required |
| Location |
The location of the report |
string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Guid": "a5e72060-3251-4797-a360-65770a9125ce",
"Title": "sample string 2",
"Location": "sample string 3"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfReportingLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
<ReportingLocation>
<Guid>a5e72060-3251-4797-a360-65770a9125ce</Guid>
<Location>sample string 3</Location>
<Title>sample string 2</Title>
</ReportingLocation>
<ReportingLocation>
<Guid>a5e72060-3251-4797-a360-65770a9125ce</Guid>
<Location>sample string 3</Location>
<Title>sample string 2</Title>
</ReportingLocation>
</ArrayOfReportingLocation>