GET api/MonitoreosSellos/ObtenerEstadisticas?Usuario={Usuario}
Retorna las Estadísticas.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Usuario | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Estadisticas| Name | Description | Type | Additional information |
|---|---|---|---|
| S_USUARIO | string |
None. |
|
| N_MONITOREOS_USUARIO | integer |
None. |
|
| N_SELLOS_USUARIO | integer |
None. |
|
| N_MONITOREOS_TOTAL | integer |
None. |
|
| N_SELLOS_TOTAL | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"S_USUARIO": "sample string 1",
"N_MONITOREOS_USUARIO": 2,
"N_SELLOS_USUARIO": 3,
"N_MONITOREOS_TOTAL": 4,
"N_SELLOS_TOTAL": 5
},
{
"S_USUARIO": "sample string 1",
"N_MONITOREOS_USUARIO": 2,
"N_SELLOS_USUARIO": 3,
"N_MONITOREOS_TOTAL": 4,
"N_SELLOS_TOTAL": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfEstadisticas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIMAPI.Models.SelloAmbiental">
<Estadisticas>
<N_MONITOREOS_TOTAL>4</N_MONITOREOS_TOTAL>
<N_MONITOREOS_USUARIO>2</N_MONITOREOS_USUARIO>
<N_SELLOS_TOTAL>5</N_SELLOS_TOTAL>
<N_SELLOS_USUARIO>3</N_SELLOS_USUARIO>
<S_USUARIO>sample string 1</S_USUARIO>
</Estadisticas>
<Estadisticas>
<N_MONITOREOS_TOTAL>4</N_MONITOREOS_TOTAL>
<N_MONITOREOS_USUARIO>2</N_MONITOREOS_USUARIO>
<N_SELLOS_TOTAL>5</N_SELLOS_TOTAL>
<N_SELLOS_USUARIO>3</N_SELLOS_USUARIO>
<S_USUARIO>sample string 1</S_USUARIO>
</Estadisticas>
</ArrayOfEstadisticas>