GET api/MensajesControlados/{Id}?Idioma={Idioma}
Devuelve la descripción indicada de un error controlado en el idioma indicado
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Id |
Id del mensaje controlado tipo Integer |
integer |
Required |
Idioma |
Id del idioma de tipo string |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
MensajesControladosName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
FK_Idiomas_Id | string |
String length: inclusive between 0 and 2 |
|
Descripcion | string |
Required String length: inclusive between 0 and 400 |
Response Formats
application/json, text/json
Sample:
{ "Id": 1, "FK_Idiomas_Id": "sample string 2", "Descripcion": "sample string 3" }
application/xml, text/xml
Sample:
<MensajesControlados xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Seed_APi_Bella_Aurora"> <Descripcion>sample string 3</Descripcion> <FK_Idiomas_Id>sample string 2</FK_Idiomas_Id> <Id>1</Id> </MensajesControlados>