GET api/Documento?IdCliente={IdCliente}&IdColegioAnioAcademico={IdColegioAnioAcademico}&CodUsuario={CodUsuario}&IdIdioma={IdIdioma}&IdDocumento={IdDocumento}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| IdCliente | integer |
Required |
|
| IdColegioAnioAcademico | integer |
Required |
|
| CodUsuario | integer |
Required |
|
| IdIdioma | string |
Required |
|
| IdDocumento | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Documento| Name | Description | Type | Additional 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-12-18T10:19:09.3410669+01: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-12-18T10:19:09.3410669+01:00</Fecha> <IdDocumento>1</IdDocumento> <Nombre>sample string 2</Nombre> <Tipo>sample string 3</Tipo> </Documento>