POST api/categoriaevento/guardar
Guarda una categoría de evento.
Request Information
URI Parameters
None.
Body Parameters
La categoría de evento a guardar.
categoriaEventoDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| categoriaEventoId | integer |
None. |
|
| nombre | string |
None. |
|
| activo | boolean |
None. |
|
| existe | boolean |
None. |
|
| orden | integer |
None. |
|
| eliminado | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"categoriaEventoId": 1,
"nombre": "sample string 2",
"activo": true,
"existe": true,
"orden": 5,
"eliminado": true
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Respuesta HTTP que indica si el registro se guardó exitosamente.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.