POST api/Atencion/GuardarEvolucion
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| dto | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"idAtencion": 1,
"idPlan": 2,
"texto": "sample string 3"
}
application/xml, text/xml
Sample:
<GuardarEvolucionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mantenimiento.Negocio.Poco"> <idAtencion>1</idAtencion> <idPlan>2</idPlan> <texto>sample string 3</texto> </GuardarEvolucionDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"codigo": 1,
"resultado": true,
"mensaje": "sample string 3",
"data": "QEBA"
}
application/xml, text/xml
Sample:
<ResultadoTransaccion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mantenimiento.Negocio.Poco"> <codigo>1</codigo> <data>QEBA</data> <mensaje>sample string 3</mensaje> <resultado>true</resultado> </ResultadoTransaccion>