GET api/TiposAlerta/{id}?nombre={nombre}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Default value is 0 |
|
| nombre | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of TiposAlertaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| nombre | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"nombre": "sample string 2"
},
{
"id": 1,
"nombre": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfTiposAlertaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
<TiposAlertaModel>
<id>1</id>
<nombre>sample string 2</nombre>
</TiposAlertaModel>
<TiposAlertaModel>
<id>1</id>
<nombre>sample string 2</nombre>
</TiposAlertaModel>
</ArrayOfTiposAlertaModel>