POST api/lea/GuardarSondeoMensajeWeb
Request Information
URI Parameters
None.
Body Parameters
LeaMensajeWeb| Name | Description | Type | Additional information |
|---|---|---|---|
| IdCentro | integer |
None. |
|
| Nombre | string |
None. |
|
| Ciudad | string |
None. |
|
| Telefono | string |
None. |
|
| Mensaje | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"idCentro": 1,
"nombre": "sample string 2",
"ciudad": "sample string 3",
"telefono": "sample string 4",
"mensaje": "sample string 5"
}
application/xml, text/xml
Sample:
<LeaMensajeWeb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models"> <Ciudad>sample string 3</Ciudad> <IdCentro>1</IdCentro> <Mensaje>sample string 5</Mensaje> <Nombre>sample string 2</Nombre> <Telefono>sample string 4</Telefono> </LeaMensajeWeb>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Respuesta| Name | Description | Type | Additional information |
|---|---|---|---|
| resultado | integer |
None. |
|
| mensaje | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"resultado": 1,
"mensaje": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models"> <data /> <mensaje>sample string 2</mensaje> <resultado>1</resultado> </Respuesta>