POST api/actividad/tipo/actualizar/{nuevo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| nuevo | boolean |
Required |
Body Parameters
Actividad| Name | Description | Type | Additional information |
|---|---|---|---|
| actividad_Id | integer |
None. |
|
| nombre | string |
None. |
|
| activo | boolean |
None. |
|
| fechaRegistro | string |
None. |
|
| tipo_Id | integer |
None. |
|
| abreviatura | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"actividad_Id": 1,
"nombre": "sample string 2",
"activo": true,
"fechaRegistro": "sample string 4",
"tipo_Id": 5,
"abreviatura": "sample string 6"
}
text/html
Sample:
{"actividad_Id":1,"nombre":"sample string 2","activo":true,"fechaRegistro":"sample string 4","tipo_Id":5,"abreviatura":"sample string 6"}
application/xml, text/xml
Sample:
<Actividad xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Business.Models"> <abreviatura>sample string 6</abreviatura> <actividad_Id>1</actividad_Id> <activo>true</activo> <fechaRegistro>sample string 4</fechaRegistro> <nombre>sample string 2</nombre> <tipo_Id>5</tipo_Id> </Actividad>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |