GET Objectives/GetMonthValues?goal={goal}&objective={objective}&nameTable={nameTable}

get the monthly analysis of an objective

Request Information

URI Parameters

NameDescriptionTypeAdditional information
goal

integer

Required

objective

integer

Required

nameTable

string

Required

Body Parameters

None.

Response Information

Resource Description

Lluni.Models.Common.Global.Objetivos.ObjectiveAnalysisValues
NameDescriptionTypeAdditional information
ObjectiveValues

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

None.

HomologousObjectiveValues

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

None.

ObjectiveToAcomplish

decimal number

None.

AcomplishedAverage

decimal number

None.

EstimatedValue

decimal number

None.

StartDate

date

None.

EndDate

date

None.

NumberOfMonths

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ObjectiveValues": [
    {
      "Year": 1,
      "Month": 2,
      "Total": 3.0
    },
    {
      "Year": 1,
      "Month": 2,
      "Total": 3.0
    }
  ],
  "HomologousObjectiveValues": [
    {
      "Year": 1,
      "Month": 2,
      "Total": 3.0
    },
    {
      "Year": 1,
      "Month": 2,
      "Total": 3.0
    }
  ],
  "ObjectiveToAcomplish": 1.0,
  "AcomplishedAverage": 2.0,
  "EstimatedValue": 3.0,
  "StartDate": "2025-10-30T16:37:49.9262585+00:00",
  "EndDate": "2025-10-30T16:37:49.9262585+00:00",
  "NumberOfMonths": 6
}

application/xml, text/xml

Sample:
<ObjectiveAnalysisValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Global.Objetivos">
  <AcomplishedAverage>2</AcomplishedAverage>
  <EndDate>2025-10-30T16:37:49.9262585+00:00</EndDate>
  <EstimatedValue>3</EstimatedValue>
  <HomologousObjectiveValues>
    <MonthValue>
      <Month>2</Month>
      <Total>3</Total>
      <Year>1</Year>
    </MonthValue>
    <MonthValue>
      <Month>2</Month>
      <Total>3</Total>
      <Year>1</Year>
    </MonthValue>
  </HomologousObjectiveValues>
  <NumberOfMonths>6</NumberOfMonths>
  <ObjectiveToAcomplish>1</ObjectiveToAcomplish>
  <ObjectiveValues>
    <MonthValue>
      <Month>2</Month>
      <Total>3</Total>
      <Year>1</Year>
    </MonthValue>
    <MonthValue>
      <Month>2</Month>
      <Total>3</Total>
      <Year>1</Year>
    </MonthValue>
  </ObjectiveValues>
  <StartDate>2025-10-30T16:37:49.9262585+00:00</StartDate>
</ObjectiveAnalysisValues>