GET api/parametros/PorConstruccion/{construccion}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| construccion | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DTOParametro| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Nombre | string |
Required |
|
| FkConstruccion | integer |
Required |
|
| Valor | string |
Required |
|
| IsDestacado | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Nombre": "sample string 2",
"FkConstruccion": 3,
"Valor": "sample string 4",
"IsDestacado": true
},
{
"Id": 1,
"Nombre": "sample string 2",
"FkConstruccion": 3,
"Valor": "sample string 4",
"IsDestacado": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDTOParametro xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO">
<DTOParametro>
<FkConstruccion>3</FkConstruccion>
<Id>1</Id>
<IsDestacado>true</IsDestacado>
<Nombre>sample string 2</Nombre>
<Valor>sample string 4</Valor>
</DTOParametro>
<DTOParametro>
<FkConstruccion>3</FkConstruccion>
<Id>1</Id>
<IsDestacado>true</IsDestacado>
<Nombre>sample string 2</Nombre>
<Valor>sample string 4</Valor>
</DTOParametro>
</ArrayOfDTOParametro>