GET api/esami/dettaglio?IdEsame={IdEsame}

Restituisce la lista degli esami

Request Information

URI Parameters

NameDescriptionTypeAdditional information
IdEsame

integer

Required

Body Parameters

None.

Response Information

Resource Description

Esame
NameDescriptionTypeAdditional information
IdEsame

Id Esame

unsigned integer

None.

TempoPerScheda

Tempo disponibile per la scheda simulazione esame

integer

None.

ErroriPerScheda

Numero massimo di errori ammessi su una singola scheda esame

integer

None.

DomandePerScheda

Indica il numero di domande da inserire nella scheda esame

integer

None.

HasTeoria

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IdEsame": 1,
  "TempoPerScheda": 2,
  "ErroriPerScheda": 3,
  "DomandePerScheda": 4,
  "HasTeoria": true
}

application/xml, text/xml

Sample:
<Esame xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GalileoNETWebAPI.Common">
  <DomandePerScheda>4</DomandePerScheda>
  <ErroriPerScheda>3</ErroriPerScheda>
  <HasTeoria>true</HasTeoria>
  <IdEsame>1</IdEsame>
  <TempoPerScheda>2</TempoPerScheda>
</Esame>