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": "71814421-a40b-4b72-9f86-a10ecc5d10e3",
    "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>71814421-a40b-4b72-9f86-a10ecc5d10e3</Guid>
    <Location>sample string 3</Location>
    <Title>sample string 2</Title>
  </ReportingLocation>
  <ReportingLocation>
    <Guid>71814421-a40b-4b72-9f86-a10ecc5d10e3</Guid>
    <Location>sample string 3</Location>
    <Title>sample string 2</Title>
  </ReportingLocation>
</ArrayOfReportingLocation>