GET api/Documento?IdCliente={IdCliente}&IdColegioAnioAcademico={IdColegioAnioAcademico}&CodUsuario={CodUsuario}&IdIdioma={IdIdioma}&IdDocumento={IdDocumento}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
IdCliente

integer

Required

IdColegioAnioAcademico

integer

Required

CodUsuario

integer

Required

IdIdioma

string

Required

IdDocumento

integer

Required

Body Parameters

None.

Response Information

Resource Description

Documento
NameDescriptionTypeAdditional information
IdDocumento

integer

None.

Nombre

string

None.

Fecha

date

None.

Tipo

string

None.

Enlace

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IdDocumento": 1,
  "Nombre": "sample string 2",
  "Fecha": "2025-05-07T05:25:50.1316513+02:00",
  "Tipo": "sample string 3",
  "Enlace": "sample string 4"
}

application/xml, text/xml

Sample:
<Documento xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EduAppFam_ApiSwagger.EduAppFam_ApiSwagger.Models">
  <Enlace>sample string 4</Enlace>
  <Fecha>2025-05-07T05:25:50.1316513+02:00</Fecha>
  <IdDocumento>1</IdDocumento>
  <Nombre>sample string 2</Nombre>
  <Tipo>sample string 3</Tipo>
</Documento>