POST objectives

Returns the objectives of a goal data set

Request Information

URI Parameters

None.

Body Parameters

Tuple containing the goal, objective and table name

Collection of Lluni.Models.Common.Global.Objetivos.ObjetiveRequest
NameDescriptionTypeAdditional information
Goal

integer

None.

Objective

integer

None.

TableName

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Goal": 1,
    "Objective": 2,
    "TableName": "sample string 3"
  },
  {
    "Goal": 1,
    "Objective": 2,
    "TableName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfObjetiveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Global.Objetivos">
  <ObjetiveRequest>
    <Goal>1</Goal>
    <Objective>2</Objective>
    <TableName>sample string 3</TableName>
  </ObjetiveRequest>
  <ObjetiveRequest>
    <Goal>1</Goal>
    <Objective>2</Objective>
    <TableName>sample string 3</TableName>
  </ObjetiveRequest>
</ArrayOfObjetiveRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Objective list

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.