GET v1/certificaciones/stats

Muestra estadisticas de las certificaciones. Ej: Cantidad en proceso, completadas o error. Cantidad por paso o etapa.

Petición

Párametros URI

Ninguno.

Párametros POST

Ninguno.

Respuesta

Descripción

Estadisticas
NombreDescripciónTipoInformación adicional
PorEstado

Certificaciones en cada estado.

Dictionary of EstadoCertificacion [key] and integer [value]

Ninguna.

PorEtapa

Certificaciones en cada etapa.

Dictionary of EtapaCertificacion [key] and integer [value]

Ninguna.

PorPasoEnSII

Certificaciones en cada paso.

Dictionary of PasoCertificacion [key] and integer [value]

Ninguna.

Total

Total de certificaciones.

integer

Ninguna.

Formatos de la respuesta

application/json, text/json

Ejemplo:
{
  "PorEstado": {
    "Creada": 1
  },
  "PorEtapa": {
    "VerificacionSII": 1
  },
  "PorPasoEnSII": {
    "Ninguno": 1
  },
  "Total": 1
}

application/xml, text/xml

Ejemplo:
<Estadisticas xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CertSii.WebApi.Models">
  <PorEstado xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfEstadoCertificacionintBZigdcrf>
      <d2p1:Key>Creada</d2p1:Key>
      <d2p1:Value>1</d2p1:Value>
    </d2p1:KeyValueOfEstadoCertificacionintBZigdcrf>
  </PorEstado>
  <PorEtapa xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfEtapaCertificacionintBZigdcrf>
      <d2p1:Key>VerificacionSII</d2p1:Key>
      <d2p1:Value>1</d2p1:Value>
    </d2p1:KeyValueOfEtapaCertificacionintBZigdcrf>
  </PorEtapa>
  <PorPasoEnSII xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfPasoCertificacionintBZigdcrf>
      <d2p1:Key>Ninguno</d2p1:Key>
      <d2p1:Value>1</d2p1:Value>
    </d2p1:KeyValueOfPasoCertificacionintBZigdcrf>
  </PorPasoEnSII>
  <Total>1</Total>
</Estadisticas>