GET v1/person/{id}/objectives
Gets a list of all objectives under which the specified person can create goals (scope: manager or administrator)
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
id |
The person's ID. |
string |
Required. |
Body Parameters
None.
Response Information
Resource Description
List of objectives
IHttpActionResultNone.
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>