GET api/Notas/Notas?idNota={idNota}

obtiene una nota por id

Request Information

Parameters

NameDescriptionAdditional information
idNota

Define this parameter in the request URI.

Información de respuesta:

En los siguientes apartados de indican los formatos de respuesta. Para probar el servicio haga click en el boton probar api e ingrese su key en la cabecera del mensaje.

application/json, text/json

Ejemplo:
{
  "Id": "sample string 1",
  "IdIdioma": "sample string 2",
  "Activa": "sample string 3",
  "Fecha": "sample string 4",
  "Titulo": "sample string 5",
  "Resumen": "sample string 6",
  "Cuerpo": "sample string 7",
  "LinkImagenListado": "sample string 8",
  "LinkImagen": "sample string 9",
  "Video": "sample string 10",
  "FechaBaja": "sample string 11"
}

application/xml, text/xml

Ejemplo:
<Nota xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/wtapi.Models">
  <Activa>sample string 3</Activa>
  <Cuerpo>sample string 7</Cuerpo>
  <Fecha>sample string 4</Fecha>
  <FechaBaja>sample string 11</FechaBaja>
  <Id>sample string 1</Id>
  <IdIdioma>sample string 2</IdIdioma>
  <LinkImagen>sample string 9</LinkImagen>
  <LinkImagenListado>sample string 8</LinkImagenListado>
  <Resumen>sample string 6</Resumen>
  <Titulo>sample string 5</Titulo>
  <Video>sample string 10</Video>
</Nota>