GET api/Parametros/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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
}
application/xml, text/xml
Sample:
<DTOParametro xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO"> <FkConstruccion>3</FkConstruccion> <Id>1</Id> <IsDestacado>true</IsDestacado> <Nombre>sample string 2</Nombre> <Valor>sample string 4</Valor> </DTOParametro>