POST objectives/filter

Returns the objectives of a goal data set

Request Information

URI Parameters

None.

Body Parameters

Tuple containing the goal, objective and table name

Lluni.Models.Common.Global.Objetivos.ObjetiveRequestAndDates
NameDescriptionTypeAdditional information
ObjetiveRequest

Collection of Lluni.Models.Common.Global.Objetivos.ObjetiveRequest

None.

dataInicial

date

None.

dataFinal

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ObjetiveRequest": [
    {
      "Goal": 1,
      "Objective": 2,
      "TableName": "sample string 3"
    },
    {
      "Goal": 1,
      "Objective": 2,
      "TableName": "sample string 3"
    }
  ],
  "dataInicial": "2025-10-30T16:33:52.8950119+00:00",
  "dataFinal": "2025-10-30T16:33:52.8950119+00:00"
}

application/xml, text/xml

Sample:
<ObjetiveRequestAndDates xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Global.Objetivos">
  <ObjetiveRequest>
    <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>
  </ObjetiveRequest>
  <dataFinal>2025-10-30T16:33:52.8950119+00:00</dataFinal>
  <dataInicial>2025-10-30T16:33:52.8950119+00:00</dataInicial>
</ObjetiveRequestAndDates>

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.