GET api/estadisticas/entregas?prevision={prevision}&fechaDesde={fechaDesde}&fechaHasta={fechaHasta}
Obtiene las estadisticas de las entregas resultados segun el rango de fechas.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| prevision |
Prevision a buscar |
string |
Required |
| fechaDesde |
Fecha inicial |
string |
Required |
| fechaHasta |
Fecha final |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EstadisticasEntregasResultadosModels| Name | Description | Type | Additional information |
|---|---|---|---|
| RUTPaciente |
El RUT del paciente. |
string |
None. |
| NombrePaciente |
El Nombre del Paciente. |
string |
None. |
| Protocolo |
El protocolo de la orden. |
string |
None. |
| FechaIngreso |
Fecha de ingreso de la orden. |
date |
None. |
| FechaValidacion |
Fecha de validación de la orden. |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RUTPaciente": "sample string 1",
"NombrePaciente": "sample string 2",
"Protocolo": "sample string 3",
"FechaIngreso": "2025-12-10T08:23:24.9058807-03:00",
"FechaValidacion": "2025-12-10T08:23:24.9058807-03:00"
},
{
"RUTPaciente": "sample string 1",
"NombrePaciente": "sample string 2",
"Protocolo": "sample string 3",
"FechaIngreso": "2025-12-10T08:23:24.9058807-03:00",
"FechaValidacion": "2025-12-10T08:23:24.9058807-03:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfEstadisticasEntregasResultadosModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Biolabs.Models">
<EstadisticasEntregasResultadosModels>
<FechaIngreso>2025-12-10T08:23:24.9058807-03:00</FechaIngreso>
<FechaValidacion>2025-12-10T08:23:24.9058807-03:00</FechaValidacion>
<NombrePaciente>sample string 2</NombrePaciente>
<Protocolo>sample string 3</Protocolo>
<RUTPaciente>sample string 1</RUTPaciente>
</EstadisticasEntregasResultadosModels>
<EstadisticasEntregasResultadosModels>
<FechaIngreso>2025-12-10T08:23:24.9058807-03:00</FechaIngreso>
<FechaValidacion>2025-12-10T08:23:24.9058807-03:00</FechaValidacion>
<NombrePaciente>sample string 2</NombrePaciente>
<Protocolo>sample string 3</Protocolo>
<RUTPaciente>sample string 1</RUTPaciente>
</EstadisticasEntregasResultadosModels>
</ArrayOfEstadisticasEntregasResultadosModels>