GET api/estadisticas/medicos?fechaDesde={fechaDesde}&fechaHasta={fechaHasta}
Obtiene todos las estadisticas de la cantidad de examenes segun cada médico en el rango de fecha.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fechaDesde |
Fecha inicial para hacer la búsqueda |
string |
Required |
| fechaHasta |
Fecha final para hacer la búsqueda |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EstadisticasExamenesModels| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
El Id del médico o de la previsión. |
string |
None. |
| Nombre |
El nombre del médico o de la previsión. |
string |
None. |
| Cantidad |
Cantidad. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"Nombre": "sample string 2",
"Cantidad": 3
},
{
"Id": "sample string 1",
"Nombre": "sample string 2",
"Cantidad": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfEstadisticasExamenesModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Biolabs.Models">
<EstadisticasExamenesModels>
<Cantidad>3</Cantidad>
<Id>sample string 1</Id>
<Nombre>sample string 2</Nombre>
</EstadisticasExamenesModels>
<EstadisticasExamenesModels>
<Cantidad>3</Cantidad>
<Id>sample string 1</Id>
<Nombre>sample string 2</Nombre>
</EstadisticasExamenesModels>
</ArrayOfEstadisticasExamenesModels>