GET v1/person/objectives

Gets a list of all objectives under which the authenticated user can create goals

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of objectives

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "ID": "sample string 1",
    "Name": "sample string 2"
  },
  {
    "ID": "sample string 1",
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfObjectiveLightModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAPTA.Domain.ViewModel.v1">
  <ObjectiveLightModel>
    <ID>sample string 1</ID>
    <Name>sample string 2</Name>
  </ObjectiveLightModel>
  <ObjectiveLightModel>
    <ID>sample string 1</ID>
    <Name>sample string 2</Name>
  </ObjectiveLightModel>
</ArrayOfObjectiveLightModel>