POST api/Certificado/Certificado

Request Information

URI Parameters

None.

Body Parameters

Certificado
NameDescriptionTypeAdditional information
NombreAlumno

string

None.

Nivel

string

None.

PuntajeReading

integer

None.

PuntajeListening

integer

None.

PuntajeSpeaking

integer

None.

PuntajeWriting

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "nombreAlumno": "sample string 1",
  "nivel": "sample string 2",
  "puntajeReading": 3,
  "puntajeListening": 4,
  "puntajeSpeaking": 5,
  "puntajeWriting": 6
}

application/xml, text/xml

Sample:
<Certificado xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models">
  <Nivel>sample string 2</Nivel>
  <NombreAlumno>sample string 1</NombreAlumno>
  <PuntajeListening>4</PuntajeListening>
  <PuntajeReading>3</PuntajeReading>
  <PuntajeSpeaking>5</PuntajeSpeaking>
  <PuntajeWriting>6</PuntajeWriting>
</Certificado>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Respuesta
NameDescriptionTypeAdditional information
resultado

integer

None.

mensaje

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "resultado": 1,
  "mensaje": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models">
  <data />
  <mensaje>sample string 2</mensaje>
  <resultado>1</resultado>
</Respuesta>