GET api/AguaUtilApi/GetActivosListaZonaCampana?idzona={idzona}&idcampana={idcampana}

Retrieves a collection of water usage and precipitation reports for all active lots within the specified zone and campaign.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idzona

The unique identifier of the zone for which to retrieve active lot reports.

globally unique identifier

Required

idcampana

The unique identifier of the campaign associated with the requested reports.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

An enumerable collection of AguaUtilReport objects, each containing aggregated irrigation and precipitation data for an active lot in the specified zone and campaign. The collection is empty if no matching lots are found.

Collection of AguaUtilReport
NameDescriptionTypeAdditional information
IdLote

globally unique identifier

None.

NombreLote

string

None.

IdKilimoLote

string

None.

IdCampo

globally unique identifier

None.

NombreCampo

string

None.

IdKilimoCampo

string

None.

IdCliente

globally unique identifier

None.

NombreCliente

string

None.

IdCultivo

globally unique identifier

None.

NombreCultivo

string

None.

RiegoAcumuladoMM

decimal number

None.

FechaUltimaLaminaRiego

date

None.

MmUltimaLaminaRiego

decimal number

None.

PrecipitacionAcumuladaMM

decimal number

None.

FechaUltimaPrecipitacion

date

None.

MmUltimaPrecipitacion

decimal number

None.

PrecipitacionEfectivaMM

decimal number

None.

ZonaSeguraPorcentaje

decimal number

None.

PorcentajeAguaUtil

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdLote": "8a144b16-2cb9-4f5a-9896-c8bf1147af66",
    "NombreLote": "sample string 2",
    "IdKilimoLote": "sample string 3",
    "IdCampo": "8b37984d-380c-4b4e-ad02-058e6085bd2b",
    "NombreCampo": "sample string 5",
    "IdKilimoCampo": "sample string 6",
    "IdCliente": "36addc7e-c357-4561-8281-a1907594f4ab",
    "NombreCliente": "sample string 8",
    "IdCultivo": "21bf88fa-8171-4188-986c-6f3112515930",
    "NombreCultivo": "sample string 10",
    "RiegoAcumuladoMM": 1.1,
    "FechaUltimaLaminaRiego": "2026-04-15T10:02:13.3964266-03:00",
    "MmUltimaLaminaRiego": 1.1,
    "PrecipitacionAcumuladaMM": 1.1,
    "FechaUltimaPrecipitacion": "2026-04-15T10:02:13.3964266-03:00",
    "MmUltimaPrecipitacion": 1.1,
    "PrecipitacionEfectivaMM": 1.1,
    "ZonaSeguraPorcentaje": 1.1,
    "PorcentajeAguaUtil": 1.1
  },
  {
    "IdLote": "8a144b16-2cb9-4f5a-9896-c8bf1147af66",
    "NombreLote": "sample string 2",
    "IdKilimoLote": "sample string 3",
    "IdCampo": "8b37984d-380c-4b4e-ad02-058e6085bd2b",
    "NombreCampo": "sample string 5",
    "IdKilimoCampo": "sample string 6",
    "IdCliente": "36addc7e-c357-4561-8281-a1907594f4ab",
    "NombreCliente": "sample string 8",
    "IdCultivo": "21bf88fa-8171-4188-986c-6f3112515930",
    "NombreCultivo": "sample string 10",
    "RiegoAcumuladoMM": 1.1,
    "FechaUltimaLaminaRiego": "2026-04-15T10:02:13.3964266-03:00",
    "MmUltimaLaminaRiego": 1.1,
    "PrecipitacionAcumuladaMM": 1.1,
    "FechaUltimaPrecipitacion": "2026-04-15T10:02:13.3964266-03:00",
    "MmUltimaPrecipitacion": 1.1,
    "PrecipitacionEfectivaMM": 1.1,
    "ZonaSeguraPorcentaje": 1.1,
    "PorcentajeAguaUtil": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfAguaUtilReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entities.DTO">
  <AguaUtilReport>
    <FechaUltimaLaminaRiego>2026-04-15T10:02:13.3964266-03:00</FechaUltimaLaminaRiego>
    <FechaUltimaPrecipitacion>2026-04-15T10:02:13.3964266-03:00</FechaUltimaPrecipitacion>
    <IdCampo>8b37984d-380c-4b4e-ad02-058e6085bd2b</IdCampo>
    <IdCliente>36addc7e-c357-4561-8281-a1907594f4ab</IdCliente>
    <IdCultivo>21bf88fa-8171-4188-986c-6f3112515930</IdCultivo>
    <IdKilimoCampo>sample string 6</IdKilimoCampo>
    <IdKilimoLote>sample string 3</IdKilimoLote>
    <IdLote>8a144b16-2cb9-4f5a-9896-c8bf1147af66</IdLote>
    <MmUltimaLaminaRiego>1.1</MmUltimaLaminaRiego>
    <MmUltimaPrecipitacion>1.1</MmUltimaPrecipitacion>
    <NombreCampo>sample string 5</NombreCampo>
    <NombreCliente>sample string 8</NombreCliente>
    <NombreCultivo>sample string 10</NombreCultivo>
    <NombreLote>sample string 2</NombreLote>
    <PorcentajeAguaUtil>1.1</PorcentajeAguaUtil>
    <PrecipitacionAcumuladaMM>1.1</PrecipitacionAcumuladaMM>
    <PrecipitacionEfectivaMM>1.1</PrecipitacionEfectivaMM>
    <RiegoAcumuladoMM>1.1</RiegoAcumuladoMM>
    <ZonaSeguraPorcentaje>1.1</ZonaSeguraPorcentaje>
  </AguaUtilReport>
  <AguaUtilReport>
    <FechaUltimaLaminaRiego>2026-04-15T10:02:13.3964266-03:00</FechaUltimaLaminaRiego>
    <FechaUltimaPrecipitacion>2026-04-15T10:02:13.3964266-03:00</FechaUltimaPrecipitacion>
    <IdCampo>8b37984d-380c-4b4e-ad02-058e6085bd2b</IdCampo>
    <IdCliente>36addc7e-c357-4561-8281-a1907594f4ab</IdCliente>
    <IdCultivo>21bf88fa-8171-4188-986c-6f3112515930</IdCultivo>
    <IdKilimoCampo>sample string 6</IdKilimoCampo>
    <IdKilimoLote>sample string 3</IdKilimoLote>
    <IdLote>8a144b16-2cb9-4f5a-9896-c8bf1147af66</IdLote>
    <MmUltimaLaminaRiego>1.1</MmUltimaLaminaRiego>
    <MmUltimaPrecipitacion>1.1</MmUltimaPrecipitacion>
    <NombreCampo>sample string 5</NombreCampo>
    <NombreCliente>sample string 8</NombreCliente>
    <NombreCultivo>sample string 10</NombreCultivo>
    <NombreLote>sample string 2</NombreLote>
    <PorcentajeAguaUtil>1.1</PorcentajeAguaUtil>
    <PrecipitacionAcumuladaMM>1.1</PrecipitacionAcumuladaMM>
    <PrecipitacionEfectivaMM>1.1</PrecipitacionEfectivaMM>
    <RiegoAcumuladoMM>1.1</RiegoAcumuladoMM>
    <ZonaSeguraPorcentaje>1.1</ZonaSeguraPorcentaje>
  </AguaUtilReport>
</ArrayOfAguaUtilReport>